diff options
Diffstat (limited to 'src/Controller.h')
| -rw-r--r-- | src/Controller.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Controller.h b/src/Controller.h new file mode 100644 index 0000000..5d18f36 --- /dev/null +++ b/src/Controller.h @@ -0,0 +1,19 @@ +/* + * Controller.h + * + * Created on: Jan 25, 2012 + * Author: Simon + */ + +#ifndef CONTROLLER_H_ +#define CONTROLLER_H_ + +class ControllerCallback +{ +public: + ControllerCallback() {} + virtual void ControllerExit() {} + virtual ~ControllerCallback() {} +}; + +#endif /* CONTROLLER_H_ */ |
