MyGUI  3.4.1
MyGUI_IItem.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_I_ITEM_H_
8 #define MYGUI_I_ITEM_H_
9 
10 #include "MyGUI_Prerequest.h"
11 
12 namespace MyGUI
13 {
14 
15  class IItemContainer;
16 
18  {
19  public:
20  virtual ~IItem() { }
21 
23  {
24  return nullptr;
25  }
26  };
27 
28 } // namespace MyGUI
29 
30 #endif // MYGUI_I_ITEM_H_
#define MYGUI_EXPORT
virtual ~IItem()
Definition: MyGUI_IItem.h:20
virtual IItemContainer * _getItemContainer() const
Definition: MyGUI_IItem.h:22