MyGUI  3.2.1
MyGUI_WidgetDefines.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_WIDGET_DEFINES_H__
8 #define __MYGUI_WIDGET_DEFINES_H__
9 
10 #include "MyGUI_Prerequest.h"
11 #include "MyGUI_Enumerator.h"
12 #include <vector>
13 #include <map>
14 
15 namespace MyGUI
16 {
17 
18  class Widget;
19  typedef std::vector<Widget*> VectorWidgetPtr;
20  typedef std::map<std::string, Widget*> MapWidgetPtr;
22 
23 } // namespace MyGUI
24 
25 #endif // __MYGUI_WIDGET_DEFINES_H__