- Timestamp:
- Dec 5, 2016, 3:59:27 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/Dialog_HS16/src/modules/notifications/dispatchers/Dialogue.h
r11292 r11317 20 20 21 21 const std::string& getMessage(void) 22 { return this->message_; }22 { return this->message_; } 23 23 const std::string& getSpeaker(void) 24 24 {return this->speaker_;} 25 const std::string& getPortrait(void) 26 { return this->portrait_;} 27 25 28 protected: 26 29 virtual const std::string& createNotificationMessage(void); 27 30 virtual void update(void); 28 31 29 32 private: … … 31 34 std::string speaker_; 32 35 std::string dialogue_; 36 std::string portrait_; 33 37 34 38 void setSpeaker(const std::string& speaker) … … 36 40 void setMessage(const std::string& message) 37 41 { this->message_ = message; } 42 void setPortrait(const std::string& portrait) 43 { this->portrait_ = portrait;} 38 44 } ; 39 40 45 } 41 46
Note: See TracChangeset
for help on using the changeset viewer.