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:
15  NotificationEvent(EventsIDs type, Message* message);
16 
17  Message* getMessage() { return message_; }
18  private:
19  Message* message_;
20  };
21  }
22 }
23 
24 #endif //NOTIFICATIONEVENT_H
BALL::VIEW::Message
Definition: message.h:52
QEvent
BALL
Definition: constants.h:12
message.h
BALL::VIEW::NotificationEvent::NotificationEvent
NotificationEvent(EventsIDs type, Message *message)
BALL::VIEW::NotificationEvent::getMessage
Message * getMessage()
Definition: notificationEvent.h:17
BALL::VIEW::NotificationEvent
Definition: notificationEvent.h:12
BALL::VIEW::EventsIDs
EventsIDs
Definition: VIEW/KERNEL/common.h:71