tibia-client/src/framework/global.h

58 lines
1.0 KiB
C
Raw Normal View History

2011-08-15 16:06:15 +02:00
#ifndef FRAMEWORK_GLOBAL_H
#define FRAMEWORK_GLOBAL_H
2011-07-13 23:12:36 +02:00
// 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-08-15 16:06:15 +02:00
#include <iomanip>
2011-08-15 21:15:49 +02:00
#include <unordered_map>
2011-08-16 05:27:46 +02:00
#include <random>
2011-07-13 23:12:36 +02:00
2011-08-14 04:09:11 +02:00
// boost utilities
#include <boost/algorithm/string.hpp>
2011-08-22 21:13:52 +02:00
#include <boost/any.hpp>
2011-07-13 23:12:36 +02:00
2011-08-15 16:06:15 +02:00
// global constants
#include "const.h"
2011-07-13 23:12:36 +02:00
2011-08-14 04:09:11 +02:00
// additional utilities
2011-08-15 16:06:15 +02:00
#include "util/types.h"
#include "util/tools.h"
#include "util/translator.h"
#include "util/point.h"
#include "util/color.h"
#include "util/rect.h"
#include "util/size.h"
2011-07-13 23:12:36 +02:00
2011-08-20 22:30:41 +02:00
// logger
#include "core/logger.h"
2011-08-16 02:30:31 +02:00
// easy typing for _1, _2, ...
using namespace std::placeholders;
2011-08-14 04:09:11 +02:00
#endif