BALL  1.5.0
notificationEvent.h
Go to the documentation of this file.
1 #ifndef NOTIFICATIONEVENT_H
2 #define NOTIFICATIONEVENT_H
3 
4 #include <QtCore/QEvent>
5 
7 
8 namespace BALL
9 {
10  namespace VIEW
11  {
12  class NotificationEvent : public QEvent
13  {
14  public:
16 
17  Message* getMessage() { return message_; }
18  private:
19  Message* message_;
20  };
21  }
22 }
23 
24 #endif //NOTIFICATIONEVENT_H
Definition: constants.h:13
NotificationEvent(EventsIDs type, Message *message)