summaryrefslogtreecommitdiff
path: root/includes/interface/Window.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/interface/Window.h')
-rw-r--r--includes/interface/Window.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/includes/interface/Window.h b/includes/interface/Window.h
new file mode 100644
index 0000000..86a4bcd
--- /dev/null
+++ b/includes/interface/Window.h
@@ -0,0 +1,22 @@
+/*
+ * Window.h
+ *
+ * Created on: Jan 8, 2012
+ * Author: Simon
+ */
+
+#ifndef WINDOW_H_
+#define WINDOW_H_
+
+#include "interface/State.h"
+
+namespace ui {
+
+class Window: public ui::State {
+public:
+ Window();
+ virtual ~Window();
+};
+
+} /* namespace ui */
+#endif /* WINDOW_H_ */