blob: 4c64dea08e006da73cbf7cd56fe56e50e5dd0097 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* Notification.h
*
* Created on: Jun 20, 2012
* Author: Simon
*/
#ifndef NOTIFICATION_H_
#define NOTIFICATION_H_
#include <string>
class Notification
{
public:
Notification(std::string message) : Message(message) {}
virtual ~Notification() {};
std::string Message;
virtual void Action() { }
};
#endif /* NOTIFICATION_H_ */
|