summaryrefslogtreecommitdiff
path: root/src/Controller.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Controller.h')
-rw-r--r--src/Controller.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/Controller.h b/src/Controller.h
new file mode 100644
index 0000000..12748be
--- /dev/null
+++ b/src/Controller.h
@@ -0,0 +1,27 @@
+/*
+ * Controller.h
+ *
+ * Created on: Jan 25, 2012
+ * Author: Simon
+ */
+
+#ifndef CONTROLLER_H_
+#define CONTROLLER_H_
+
+class ControllerCallback
+{
+public:
+ ControllerCallback() {}
+ virtual void ControllerExit() {}
+ virtual ~ControllerCallback() {}
+};
+
+class Controller
+{
+private:
+ virtual void Exit();
+ virtual void Show();
+ virtual void Hide();
+};
+
+#endif /* CONTROLLER_H_ */