Changeset 240
- Timestamp:
- Nov 25, 2007, 3:08:49 AM (17 years ago)
- Location:
- code/branches/objecthierarchie/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchie/src/IdentifierList.cc
r239 r240 74 74 } 75 75 76 std::string IdentifierList::toString() 76 std::string IdentifierList::toString() const 77 77 { 78 78 IdentifierListElement* temp = this->first_; -
code/branches/objecthierarchie/src/IdentifierList.h
r239 r240 27 27 void remove(const Identifier* identifier); 28 28 bool isInList(const Identifier* identifier); 29 std::string toString() ;29 std::string toString() const; 30 30 31 31 IdentifierListElement* first_; -
code/branches/objecthierarchie/src/OrxonoxClass.h
r239 r240 12 12 OrxonoxClass(); 13 13 virtual ~OrxonoxClass(); 14 constIdentifier* getIdentifier() const { return this->identifier_; }15 void setIdentifier( constIdentifier* identifier) { this->identifier_ = identifier; }14 Identifier* getIdentifier() const { return this->identifier_; } 15 void setIdentifier(Identifier* identifier) { this->identifier_ = identifier; } 16 16 IdentifierList* getParents() const { return this->parents_; } 17 17 void setParents(IdentifierList* parents) { this->parents_ = parents; } 18 18 19 19 private: 20 constIdentifier* identifier_;20 Identifier* identifier_; 21 21 IdentifierList* parents_; 22 22 };
Note: See TracChangeset
for help on using the changeset viewer.