summaryrefslogtreecommitdiff
path: root/src/preview/PreviewView.h
diff options
context:
space:
mode:
authorFrankBro <brodeur_francois@hotmail.com>2012-01-22 05:45:10 (GMT)
committer FrankBro <brodeur_francois@hotmail.com>2012-01-22 05:45:10 (GMT)
commit57ab7bca76aa94624ca078d7168614eb28ead640 (patch)
tree2730cab371676cc92fa19da55838c03cd1b4d2a0 /src/preview/PreviewView.h
parentcb92acd0b7dd9e958330a9b8e3c4b302f236542c (diff)
parent3a283d4f3c571dc8a891f2cdc348c204f7f9300b (diff)
downloadpowder-57ab7bca76aa94624ca078d7168614eb28ead640.zip
powder-57ab7bca76aa94624ca078d7168614eb28ead640.tar.gz
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src/preview/PreviewView.h')
-rw-r--r--src/preview/PreviewView.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/preview/PreviewView.h b/src/preview/PreviewView.h
new file mode 100644
index 0000000..728d547
--- /dev/null
+++ b/src/preview/PreviewView.h
@@ -0,0 +1,23 @@
+/*
+ * PreviewView.h
+ *
+ * Created on: Jan 21, 2012
+ * Author: Simon
+ */
+
+#ifndef PREVIEWVIEW_H_
+#define PREVIEWVIEW_H_
+#include "interface/Window.h"
+#include "preview/PreviewController.h"
+
+class PreviewController;
+class PreviewView: public ui::Window {
+ PreviewController * c;
+public:
+ void AttachController(PreviewController * controller) { c = controller;}
+ PreviewView();
+ virtual void OnDraw();
+ virtual ~PreviewView();
+};
+
+#endif /* PREVIEWVIEW_H_ */