Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 5, 2016, 3:59:27 PM (8 years ago)
Author:
dmoritz
Message:

Picture added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/Dialog_HS16/src/modules/notifications/dispatchers/Dialogue.h

    r11292 r11317  
    2020
    2121            const std::string& getMessage(void)
    22                 { return this->message_; }
     22                        { return this->message_; }
    2323                const std::string& getSpeaker(void)
    2424                        {return this->speaker_;}
     25            const std::string& getPortrait(void)
     26                        { return this->portrait_;}
     27
    2528    protected:
    2629        virtual const std::string& createNotificationMessage(void);
    27                
     30        virtual void update(void);
    2831       
    2932    private:
     
    3134                std::string speaker_;
    3235                std::string dialogue_;
     36                std::string portrait_;
    3337
    3438                void setSpeaker(const std::string& speaker)
     
    3640                void setMessage(const std::string& message)
    3741                { this->message_ = message; }
     42            void setPortrait(const std::string& portrait)
     43                { this->portrait_ = portrait;}
    3844        } ;       
    39 
    4045}
    4146
Note: See TracChangeset for help on using the changeset viewer.