MyGUI  3.0.1
MyGUI_Common.h
Go to the documentation of this file.
1 
8 /*
9  This file is part of MyGUI.
10 
11  MyGUI is free software: you can redistribute it and/or modify
12  it under the terms of the GNU Lesser General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  MyGUI is distributed in the hope that it will be useful,
17  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  GNU Lesser General Public License for more details.
20 
21  You should have received a copy of the GNU Lesser General Public License
22  along with MyGUI. If not, see <http://www.gnu.org/licenses/>.
23 */
24 #ifndef __MYGUI_COMMON_H__
25 #define __MYGUI_COMMON_H__
26 
27 #include "MyGUI_Prerequest.h"
28 
29 #include <string>
30 #include <list>
31 #include <set>
32 #include <map>
33 #include <vector>
34 #include <deque>
35 #include <exception>
36 #include <math.h>
37 
38 #ifdef MYGUI_CUSTOM_ALLOCATOR
39 # include "MyGUI_CustomAllocator.h"
40 #else // MYGUI_CUSTOM_ALLOCATOR
41 # include "MyGUI_Allocator.h"
42 #endif // MYGUI_CUSTOM_ALLOCATOR
43 
44 #include "MyGUI_Macros.h"
45 #include "MyGUI_Diagnostic.h"
46 #include "MyGUI_LogManager.h"
47 #include "MyGUI_Instance.h"
48 #include "MyGUI_Types.h"
49 #include "MyGUI_RenderOut.h"
50 #include "MyGUI_Utility.h"
51 #include "MyGUI_InputDefine.h"
52 #include "MyGUI_Version.h"
53 #include "MyGUI_WidgetStyle.h"
54 #include "MyGUI_UString.h"
55 #include "MyGUI_Delegate.h"
56 
57 #endif // __MYGUI_COMMON_H__