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_POPUP_MENU_H_
8 #define MYGUI_POPUP_MENU_H_
9 
10 #include "MyGUI_Prerequest.h"
11 #include "MyGUI_MenuControl.h"
12 
13 namespace MyGUI
14 {
15 
16 	/** \brief @wpage{PopupMenu}
17 		PopupMenu widget description should be here.
18 	*/
19 	class MYGUI_EXPORT PopupMenu :
20 		public MenuControl
21 	{
22 		MYGUI_RTTI_DERIVED( PopupMenu )
23 
24 	public:
25 		PopupMenu();
26 	};
27 
28 } // namespace MyGUI
29 
30 #endif // MYGUI_POPUP_MENU_H_
31