home *** CD-ROM | disk | FTP | other *** search
-
- #ifdef WIN32
- #include <windows.h>
- #endif
-
- class Core
- {
- public
- Core( int argc, char **argv );
-
- void exec():
- private:
- };
-
-
- class Window
- {
- public:
- Window( Window *parent=NULL, int style=0, const char *label=NULL );
- virtual ~Window();
-
- void setGeometry( int x, int y, int w, int h );
-
- virtual void repaint();
- virtual void event( Event *evt );
-
- private:
-
- #ifdef WIN32
- HWND g_hwnd;
- HDC g_hdc;
- #endif
-
- };
-
- class WindowTreeView
- {
- public:
- private:
- };