Rev | Line | |
---|
[11247] | 1 | |
---|
| 2 | #ifndef _Dialogue_H__ |
---|
| 3 | #define _Dialogue_H__ |
---|
| 4 | #include <string> |
---|
[11261] | 5 | //#include "core/BaseObject.h" |
---|
[11247] | 6 | |
---|
[11261] | 7 | #include "notifications/NotificationsPrereqs.h" |
---|
| 8 | |
---|
| 9 | #include "notifications/NotificationDispatcher.h" |
---|
| 10 | |
---|
[11247] | 11 | namespace orxonox{ |
---|
| 12 | |
---|
[11261] | 13 | class _NotificationsExport Dialogue: public NotificationDispatcher{ |
---|
[11247] | 14 | |
---|
| 15 | public: |
---|
| 16 | Dialogue(Context* context); //!< Default Constructor. |
---|
| 17 | virtual ~Dialogue(); //!< Destructor. |
---|
| 18 | |
---|
| 19 | virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); |
---|
| 20 | |
---|
| 21 | const std::string& getMessage(void) |
---|
| 22 | { return this->message_; } |
---|
[11270] | 23 | const std::string& getSpeaker(void) |
---|
| 24 | {return this->speaker_;} |
---|
[11247] | 25 | |
---|
| 26 | protected: |
---|
[11270] | 27 | virtual const std::string& createNotificationMessage(void); |
---|
| 28 | |
---|
| 29 | |
---|
[11247] | 30 | private: |
---|
| 31 | std::string message_; |
---|
[11270] | 32 | std::string speaker_; |
---|
| 33 | std::string dialogue_; |
---|
[11261] | 34 | |
---|
[11270] | 35 | void setSpeaker(const std::string& speaker) |
---|
| 36 | { this->speaker_ = speaker;} |
---|
[11261] | 37 | void setMessage(const std::string& message) |
---|
| 38 | { this->message_ = message; } |
---|
[11270] | 39 | |
---|
[11247] | 40 | } ; |
---|
| 41 | |
---|
| 42 | } |
---|
| 43 | |
---|
| 44 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.