- Timestamp:
- May 4, 2017, 4:11:36 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/Dialogue_FS17/src/modules/dialogue/NextQuestion.h
r11401 r11413 1 #include <vector>1 //#include <vector> 2 2 #include <string> 3 3 #include "core/class/Identifier.h" … … 23 23 24 24 25 25 bool addposQuestion(NextQuestion* nq); 26 const NextQuestion* getposQuestion(unsigned int index) const; 26 27 27 28 28 29 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); 29 30 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); 32 35 33 int getnumOptions();34 std::vector<std::string> options;*/36 NextQuestion compare(); 37 35 38 36 39 //Event … … 40 43 41 44 private: 45 std::string a1; 46 std::string a2; 47 std::vector<NextQuestion*> possibleQuestions; 48 49 42 50 std::string question; 43 51 DialogueManager* m;
Note: See TracChangeset
for help on using the changeset viewer.