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/PreviewController.h | |
| parent | 984d39f8cc6e2fd54c1a1b4aa217334f04a5e479 (diff) | |
| download | powder-dea70befcf770a767f1cbeecdd149930f6d4c0b8.zip powder-dea70befcf770a767f1cbeecdd149930f6d4c0b8.tar.gz | |
Basic skeleton for save preview
Diffstat (limited to 'src/preview/PreviewController.h')
| -rw-r--r-- | src/preview/PreviewController.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/preview/PreviewController.h b/src/preview/PreviewController.h new file mode 100644 index 0000000..373ff03 --- /dev/null +++ b/src/preview/PreviewController.h @@ -0,0 +1,25 @@ +/* + * PreviewController.h + * + * Created on: Jan 21, 2012 + * Author: Simon + */ + +#ifndef PREVIEWCONTROLLER_H_ +#define PREVIEWCONTROLLER_H_ + +#include "preview/PreviewModel.h" +#include "preview/PreviewView.h" + +class PreviewModel; +class PreviewView; +class PreviewController { + PreviewModel * previewModel; + PreviewView * previewView; +public: + PreviewController(int saveID); + PreviewView * GetView() { return previewView; } + virtual ~PreviewController(); +}; + +#endif /* PREVIEWCONTROLLER_H_ */ |
