summaryrefslogtreecommitdiff
path: root/include/glwidgets.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/glwidgets.h')
-rw-r--r--include/glwidgets.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/glwidgets.h b/include/glwidgets.h
new file mode 100644
index 0000000..3529fab
--- /dev/null
+++ b/include/glwidgets.h
@@ -0,0 +1,14 @@
+#ifndef __GLWIDGETS_H__
+#define __GLWIDGETS_H__
+
+#include "Exceptions.h"
+
+namespace mogltk {
+ class widget : public Base {
+ public:
+ widget();
+ virtual ~widget();
+ };
+};
+
+#endif