MyGUI 3.4.1
MyGUI_IUnlinkWidget.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_UNLINK_WIDGET_H_
8#define MYGUI_UNLINK_WIDGET_H_
9
10#include "MyGUI_Prerequest.h"
11#include "MyGUI_WidgetDefines.h"
12
13namespace MyGUI
14{
15
17 {
18 public:
19 virtual ~IUnlinkWidget() { }
20 virtual void _unlinkWidget(Widget* _widget) = 0;
21 };
22
23 typedef std::vector<IUnlinkWidget*> VectorIUnlinkWidget;
24
25} // namespace MyGUI
26
27#endif // MYGUI_UNLINK_WIDGET_H_
#define MYGUI_EXPORT
widget description should be here.
Definition: MyGUI_Widget.h:37
std::vector< IUnlinkWidget * > VectorIUnlinkWidget