summaryrefslogtreecommitdiff
path: root/src/search/SearchController.h
diff options
context:
space:
mode:
authorSimon 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)
commitdea70befcf770a767f1cbeecdd149930f6d4c0b8 (patch)
treed7262fed954074b5f60b2a75307ff50c8038c25d /src/search/SearchController.h
parent984d39f8cc6e2fd54c1a1b4aa217334f04a5e479 (diff)
downloadpowder-dea70befcf770a767f1cbeecdd149930f6d4c0b8.zip
powder-dea70befcf770a767f1cbeecdd149930f6d4c0b8.tar.gz
Basic skeleton for save preview
Diffstat (limited to 'src/search/SearchController.h')
-rw-r--r--src/search/SearchController.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/search/SearchController.h b/src/search/SearchController.h
index c9fdb21..d67743e 100644
--- a/src/search/SearchController.h
+++ b/src/search/SearchController.h
@@ -4,6 +4,7 @@
#include "interface/Panel.h"
#include "SearchModel.h"
#include "SearchView.h"
+#include "preview/PreviewController.h"
class SearchView;
class SearchModel;
class SearchController
@@ -11,6 +12,7 @@ class SearchController
private:
SearchModel * searchModel;
SearchView * searchView;
+ PreviewController * activePreview;
public:
SearchController();
~SearchController();
@@ -20,6 +22,7 @@ public:
void PrevPage();
void ChangeSort();
void ShowOwn(bool show);
+ void OpenSave(int saveID);
};
#endif // SEARCHCONTROLLER_H