tibia-client/src/framework/global.h

51 lines
863 B
C
Raw Normal View History

2011-07-13 23:12:36 +02:00
#ifndef GLOBAL_H
#define GLOBAL_H
// common C headers
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cassert>
#include <ctime>
#include <cmath>
// common STL headers
#include <iostream>
#include <sstream>
#include <fstream>
#include <string>
#include <vector>
#include <list>
2011-08-14 04:09:11 +02:00
#include <queue>
#include <deque>
2011-08-14 04:09:11 +02:00
#include <stack>
2011-07-13 23:12:36 +02:00
#include <map>
#include <algorithm>
#include <exception>
#include <memory>
#include <type_traits>
2011-08-14 04:09:11 +02:00
#include <tuple>
#include <functional>
2011-08-14 04:09:11 +02:00
#include <typeinfo>
#include <array>
2011-07-13 23:12:36 +02:00
2011-08-14 04:09:11 +02:00
// boost utilities
#include <boost/algorithm/string.hpp>
2011-07-13 23:12:36 +02:00
// constants
2011-07-17 02:13:53 +02:00
#include <const.h>
2011-07-13 23:12:36 +02:00
2011-08-14 04:09:11 +02:00
// additional utilities
2011-07-13 23:12:36 +02:00
#include <util/types.h>
2011-08-14 04:09:11 +02:00
#include <util/auxiliary.h>
#include <util/logger.h>
#include <util/translator.h>
2011-07-13 23:12:36 +02:00
// custom types
#include <util/point.h>
#include <util/color.h>
#include <util/rect.h>
#include <util/size.h>
2011-08-14 04:09:11 +02:00
#endif