]> git.tdb.fi Git - libs/gltk.git/blob - source/window.h
Initial revision
[libs/gltk.git] / source / window.h
1 #ifndef MSP_GLTK_WINDOW_H_
2 #define MSP_GLTK_WINDOW_H_
3
4 #include <X11/X.h>
5
6 namespace Msp {
7 namespace GLtk {
8
9 class Window
10 {
11 public:
12         Window();
13 private:
14         Display *display;
15         Window  window;
16 };
17
18 } // namespace GLtk
19 } // namespace Msp
20
21 #endif