MyGUI
3.2.1
|
00001 /* 00002 * This source file is part of MyGUI. For the latest info, see http://mygui.info/ 00003 * Distributed under the MIT License 00004 * (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT) 00005 */ 00006 00007 #ifndef __MYGUI_WIDGET_DEFINES_H__ 00008 #define __MYGUI_WIDGET_DEFINES_H__ 00009 00010 #include "MyGUI_Prerequest.h" 00011 #include "MyGUI_Enumerator.h" 00012 #include <vector> 00013 #include <map> 00014 00015 namespace MyGUI 00016 { 00017 00018 class Widget; 00019 typedef std::vector<Widget*> VectorWidgetPtr; 00020 typedef std::map<std::string, Widget*> MapWidgetPtr; 00021 typedef Enumerator<VectorWidgetPtr> EnumeratorWidgetPtr; 00022 00023 } // namespace MyGUI 00024 00025 #endif // __MYGUI_WIDGET_DEFINES_H__