blob: 12748bec4b2d1ef1338fd1a1713ccc1c05adf9d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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_ */
|