MyGUI  3.2.1
MyGUI_Common.h
Go to the documentation of this file.
1 /*
2  * This source file is part of MyGUI. For the latest info, see http://mygui.info/
3  * Distributed under the MIT License
4  * (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
5  */
6 
7 #ifndef __MYGUI_COMMON_H__
8 #define __MYGUI_COMMON_H__
9 
10 #include "MyGUI_Prerequest.h"
11 
12 #include <string>
13 #include <list>
14 #include <set>
15 #include <map>
16 #include <vector>
17 #include <deque>
18 #include <exception>
19 #include <math.h>
20 
21 #ifdef MYGUI_CUSTOM_ALLOCATOR
22 # include "MyGUI_CustomAllocator.h"
23 #else // MYGUI_CUSTOM_ALLOCATOR
24 # include "MyGUI_Allocator.h"
25 #endif // MYGUI_CUSTOM_ALLOCATOR
26 
27 // этот дефайн для того чтобы в самом гуе показывалось имя файла где вызывается new
28 #if MYGUI_COMPILER == MYGUI_COMPILER_MSVC
29 # ifdef MYGUI_CHECK_MEMORY_LEAKS
30 # define DEBUG_NEW new (_NORMAL_BLOCK, __FILE__, __LINE__)
31 # define new DEBUG_NEW
32 # endif
33 #endif
34 
35 #include "MyGUI_Macros.h"
36 #include "MyGUI_Diagnostic.h"
37 #include "MyGUI_LogManager.h"
38 #include "MyGUI_Singleton.h"
39 #include "MyGUI_Types.h"
40 #include "MyGUI_StringUtility.h"
41 #include "MyGUI_MouseButton.h"
42 #include "MyGUI_KeyCode.h"
43 #include "MyGUI_Version.h"
44 #include "MyGUI_WidgetStyle.h"
45 #include "MyGUI_UString.h"
46 #include "MyGUI_Delegate.h"
47 
48 #endif // __MYGUI_COMMON_H__