1 /*! 2 @file 3 @author Albert Semenov 4 @date 10/2008 5 */ 6 #ifndef EDITOR_WINDOW_H_ 7 #define EDITOR_WINDOW_H_ 8 9 #include <MyGUI.h> 10 #include "BaseLayout/BaseLayout.h" 11 12 namespace demo 13 { 14 15 class EditorWindow : 16 public wraps::BaseLayout 17 { 18 public: 19 EditorWindow(); 20 21 void clearView(); 22 23 MyGUI::Widget* getView(); 24 }; 25 26 } // namespace demo 27 28 #endif // EDITOR_WINDOW_H_ 29