]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/window.h
Initial revision
[libs/gltk.git] / source / window.h
diff --git a/source/window.h b/source/window.h
new file mode 100644 (file)
index 0000000..13febae
--- /dev/null
@@ -0,0 +1,21 @@
+#ifndef MSP_GLTK_WINDOW_H_
+#define MSP_GLTK_WINDOW_H_
+
+#include <X11/X.h>
+
+namespace Msp {
+namespace GLtk {
+
+class Window
+{
+public:
+       Window();
+private:
+       Display *display;
+       Window  window;
+};
+
+} // namespace GLtk
+} // namespace Msp
+
+#endif