Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 11607 was 11607, checked in by maxima, 6 years ago

No more compiler errors. XMLPortObjects not yet implemented.

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