diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-01-21 22:48:37 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-01-21 22:48:37 (GMT) |
| commit | dea70befcf770a767f1cbeecdd149930f6d4c0b8 (patch) | |
| tree | d7262fed954074b5f60b2a75307ff50c8038c25d /src/preview/PreviewView.h | |
| parent | 984d39f8cc6e2fd54c1a1b4aa217334f04a5e479 (diff) | |
| download | powder-dea70befcf770a767f1cbeecdd149930f6d4c0b8.zip powder-dea70befcf770a767f1cbeecdd149930f6d4c0b8.tar.gz | |
Basic skeleton for save preview
Diffstat (limited to 'src/preview/PreviewView.h')
| -rw-r--r-- | src/preview/PreviewView.h | 23 |
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_ */ |
