#include "core/BaseObject.h" #include namespace orxonox{ class Question : public BaseObject { public: Question(Context* context); virtual ~Question(); virtual void XMLPort(Element& xmelement, XMLPort::Mode mode); void setQuestion(std::string question) std::string getQuestion(); void addAwnserIds(); std::vector geAwnserIds(); private: std::string question_ std::vector answerIds_; } }