MyGUI  3.4.0
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 <cmath>
20 
21 // этот дефайн для того чтобы в самом гуе показывалось имя файла где вызывается new
22 #if MYGUI_COMPILER == MYGUI_COMPILER_MSVC
23 # ifdef MYGUI_CHECK_MEMORY_LEAKS
24 # define DEBUG_NEW new (_NORMAL_BLOCK, __FILE__, __LINE__)
25 # define new DEBUG_NEW
26 # endif
27 #endif
28 
29 #include "MyGUI_Macros.h"
30 #include "MyGUI_Diagnostic.h"
31 #include "MyGUI_LogManager.h"
32 #include "MyGUI_Singleton.h"
33 #include "MyGUI_Types.h"
34 #include "MyGUI_StringUtility.h"
35 #include "MyGUI_MouseButton.h"
36 #include "MyGUI_KeyCode.h"
37 #include "MyGUI_Version.h"
38 #include "MyGUI_WidgetStyle.h"
39 #include "MyGUI_UString.h"
40 #include "MyGUI_Delegate.h"
41 
42 #endif // MYGUI_COMMON_H_
MyGUI_UString.h
MyGUI_Diagnostic.h
MyGUI_Delegate.h
MyGUI_LogManager.h
MyGUI_Version.h
MyGUI_KeyCode.h
MyGUI_MouseButton.h
MyGUI_Prerequest.h
MyGUI_Singleton.h
MyGUI_Types.h
MyGUI_WidgetStyle.h
MyGUI_StringUtility.h
MyGUI_Macros.h