Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 8, 2017, 2:55:15 PM (6 years ago)
Author:
kuchlert
Message:

eigentlich fertig nur noch altes system entfernen

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/Dialog_HS17/src/modules/dialog/Answer.h

    r11611 r11644  
    1818                        virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
    1919
    20                         void setAnswerId(std::string answerId);
    21                         std::string getAnswerId();
     20                        void setAnswerId(const std::string& answerId); //xmlPort-Funktion, setzt AntwortId
     21                        const std::string& getAnswerId() const; //xmlPort-Funktion,     gibt AntwortId
    2222
    23                         void setNextQuestion(std::string nextId); // "end" um den dialog zu beenden
    24                         std::string getNextQuestion();
     23                        void setNextQuestion(const std::string& nextId); //xmlPort-Funktion, um Dialog zu beenden tag benutzen der von keiner Frage benutzt wird
     24                        const std::string& getNextQuestion() const;     //xmlPort-Funktion, gibt Id der Folgefrage
    2525
    26                         void setAnswer(std::string awns);
    27                         std::string getAnswer();
     26                        void setAnswer(const std::string& awns);        //xmlPort-Funktion, setzt Antworttext
     27                        const std::string& getAnswer() const;   //xmlPort-Funktion,     gibt Antworttext
    2828
    2929                private:
Note: See TracChangeset for help on using the changeset viewer.