neoWidgets
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Pages
Window.h
1 #ifndef NEO_WINDOW_H
2 #define NEO_WINDOW_H
3 
4 namespace neo
5 {
6 
12 class Window : public WindowBase
13 {
14 public:
15  Window() {}
16 
17  bool Create(const WindowParam& param);
18 private:
19  Window(const Window& rhs) {}
20 };
21 
22 } // namespace neo
23 
24 #endif
The big window class that every other class descends from.
Definition: WindowBase.h:152
Creation parameters for the Window class.
Definition: WindowParam.h:10
General purpose window.
Definition: Window.h:12