MyGUI  3.2.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  IItem() { }
21  virtual ~IItem() { }
22 
23  virtual IItemContainer* _getItemContainer()
24  {
25  return nullptr;
26  }
27  };
28 
29 } // namespace MyGUI
30 
31 #endif // __MYGUI_I_ITEM_H__