1 #ifndef NOTIFICATION_H_
2 #define NOTIFICATION_H_
3 
4 #include "common/String.h"
5 
6 class Notification
7 {
8 public:
Notification(String message)9 	Notification(String message) : Message(message) {}
~Notification()10 	virtual ~Notification() {};
11 	String Message;
12 
Action()13 	virtual void Action() { }
14 };
15 
16 #endif /* NOTIFICATION_H_ */
17