summaryrefslogtreecommitdiff
path: root/src/stamps/StampsController.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-06-07 15:16:54 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-06-07 15:16:54 (GMT)
commit1dadb11fc218786a36cc46714a0478e229ca44a9 (patch)
tree8e0d2d011d90b15c2a7d96893e1107f0f8e7da1b /src/stamps/StampsController.h
parent61ed6e0276d580515d0acf5ddb96b1db95b9b191 (diff)
downloadpowder-1dadb11fc218786a36cc46714a0478e229ca44a9.zip
powder-1dadb11fc218786a36cc46714a0478e229ca44a9.tar.gz
Remove unneeded files
Diffstat (limited to 'src/stamps/StampsController.h')
-rw-r--r--src/stamps/StampsController.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/stamps/StampsController.h b/src/stamps/StampsController.h
deleted file mode 100644
index 7053714..0000000
--- a/src/stamps/StampsController.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * StampsController.h
- *
- * Created on: Mar 29, 2012
- * Author: Simon
- */
-
-#ifndef STAMPSCONTROLLER_H_
-#define STAMPSCONTROLLER_H_
-
-#include "Controller.h"
-#include "StampsView.h"
-#include "search/Save.h"
-
-class StampsView;
-class StampsModel;
-class StampsController {
- ControllerCallback * callback;
- StampsView * stampsView;
- StampsModel * stampsModel;
-public:
- bool HasDone;
- StampsController(ControllerCallback * callback);
- StampsView * GetView() {return stampsView;}
- Save * GetStamp();
- void RemoveSelected();
- void removeSelectedC();
- void ClearSelection();
- void Selected(std::string stampID, bool selected);
- void OpenStamp(Save * stamp);
- void SetStamp();
- void NextPage();
- void PrevPage();
- void Update();
- void Exit();
- virtual ~StampsController();
-};
-
-#endif /* STAMPSCONTROLLER_H_ */