MyGUI 3.4.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#include <string>
15
16namespace MyGUI
17{
18
19 class Widget;
20 using VectorWidgetPtr = std::vector<Widget*>;
21 using MapWidgetPtr = std::map<std::string, Widget*>;
23
24} // namespace MyGUI
25
26#endif // MYGUI_WIDGET_DEFINES_H_
std::map< std::string, Widget * > MapWidgetPtr
std::vector< Widget * > VectorWidgetPtr