Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 4, 2017, 4:11:36 PM (8 years ago)
Author:
rrogge
Message:

Buttons

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/Dialogue_FS17/src/modules/dialogue/NextQuestion.h

    r11401 r11413  
    1 #include <vector>
     1//#include <vector>
    22#include <string>
    33#include "core/class/Identifier.h"
     
    2323
    2424
    25                
     25                bool addposQuestion(NextQuestion* nq);
     26                const NextQuestion* getposQuestion(unsigned int index) const;
    2627 
    2728               
    2829                virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
    2930
    30                 /*void setanswers(std::string option1, std::string option2, std::string option3);
    31                 std::vector <std::string> getanswers(void);
     31                void setanswers1(std::string a1);
     32                void setanswers2(std::string a2);
     33                std::string getanswers1(void);
     34                std::string getanswers2(void);
    3235
    33                 int getnumOptions();
    34                 std::vector<std::string> options;*/
     36                NextQuestion compare();
     37               
    3538
    3639                //Event
     
    4043               
    4144        private:
     45                std::string a1;
     46                std::string a2;
     47                std::vector<NextQuestion*> possibleQuestions;
     48
     49
    4250                std::string question;
    4351                DialogueManager* m;
Note: See TracChangeset for help on using the changeset viewer.