-
Notifications
You must be signed in to change notification settings - Fork 0
/
og_pch.hpp
55 lines (43 loc) · 995 Bytes
/
og_pch.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef _PCH_H_
#define _PCH_H_
#ifdef _WIN32
#pragma warning( push, 3 )
#else
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wall"
#pragma GCC diagnostic ignored "-Weffc++"
#pragma GCC diagnostic ignored "-Wshadow"
#endif
//C STD Includes
#include <cstdio>
#include <cmath>
//C++ STD Includes
#include <array>
#include <vector>
#include <list>
#include <stack>
#include <map>
#include <memory>
#include <algorithm>
//Boost Includes
#include <boost/lexical_cast.hpp>
#include <boost/ptr_container/ptr_container.hpp>
//External Includes
#include "cml/cml.h"
#include "pugixml.hpp"
#include <OGRE/Ogre.h>
#include <OIS/OIS.h>
#define StrToStd boost::lexical_cast
#define StdToStr boost::lexical_cast<std::string>
#ifdef _WIN32
#pragma warning( pop )
#else
#pragma GCC diagnostic pop
#endif
#include "defs.hpp"
#include "utils.hpp"
/**
* A namespace containing all the functionality that will be included in the final libary.
*/
namespace og{}
#endif // __PCH_H_