diff options
Diffstat (limited to 'src/stamps/StampsController.h')
| -rw-r--r-- | src/stamps/StampsController.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/stamps/StampsController.h b/src/stamps/StampsController.h new file mode 100644 index 0000000..6b1c401 --- /dev/null +++ b/src/stamps/StampsController.h @@ -0,0 +1,35 @@ +/* + * 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 OpenStamp(Save * stamp); + void SetStamp(); + void NextPage(); + void PrevPage(); + void Update(); + void Exit(); + virtual ~StampsController(); +}; + +#endif /* STAMPSCONTROLLER_H_ */ |
