Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/Dialog_HS17/src/modules/dialog/AnswerId.h @ 11611

Last change on this file since 11611 was 11611, checked in by kuchlert, 6 years ago

fixed addQuestion and addAnswer in Dialog

File size: 440 bytes
RevLine 
[11607]1#ifndef _AnswerID_H__
2#define _AnswerID_H__
3
[11579]4#include "core/XMLPort.h"
5#include "core/BaseObject.h"
[11607]6#include "core/CoreIncludes.h"
[11579]7
8#include <string>
9
10namespace orxonox{
11        class AnswerId : public BaseObject
12        {
13                public:
14                        AnswerId(Context* context);
[11611]15                       
[11579]16                        virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
17
[11611]18            void setId(std::string Id);
19            std::string getId();
[11579]20
21                private: 
[11611]22                        std::string id_;
[11579]23        };
[11607]24}
25
26#endif
Note: See TracBrowser for help on using the repository browser.