Changeset 221 for code/branches/objecthierarchie/src/ObjectList.h
- Timestamp:
- Nov 20, 2007, 2:57:59 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchie/src/ObjectList.h
r197 r221 14 14 OrxonoxClass* object_; 15 15 ObjectListElement* next_; 16 ObjectListElement* prev_; 16 17 }; 17 18 … … 22 23 ~ObjectList(); 23 24 void add(OrxonoxClass* object); 24 void remove(OrxonoxClass* object );25 void remove(OrxonoxClass* object, bool bIterateForwards = true); 25 26 26 27 ObjectListElement* first_; 28 ObjectListElement* last_; 27 29 }; 28 30 }
Note: See TracChangeset
for help on using the changeset viewer.