Changeset 1993 for code/branches/objecthierarchy/src/core/Template.h
- Timestamp:
- Oct 22, 2008, 5:25:01 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/core/Template.h
r1989 r1993 35 35 36 36 #include "BaseObject.h" 37 #include "tinyxml/ti cpp.h"37 #include "tinyxml/tinyxml.h" 38 38 39 39 namespace orxonox … … 53 53 { return this->link_; } 54 54 55 inline void setXMLElement(const Element& xmlelement)55 inline void setXMLElement(const TiXmlElement& xmlelement) 56 56 { this->xmlelement_ = xmlelement; } 57 const Element& getXMLElement() const;57 const TiXmlElement& getXMLElement() const; 58 58 59 59 void setBaseclass(const std::string& baseclass); … … 70 70 71 71 private: 72 Element xmlelement_;72 TiXmlElement xmlelement_; 73 73 std::string link_; 74 74 std::string baseclass_;
Note: See TracChangeset
for help on using the changeset viewer.