Changes between Version 3 and Version 4 of code/doc/ObjectListIterator
- Timestamp:
- Sep 27, 2008, 4:17:04 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/doc/ObjectListIterator
v3 v4 13 13 it != ObjectList<myClass>::end(); ++it) 14 14 { 15 it-> someFunction(...);16 myClass* myObject = *it;15 it->callSomeFunction(...); 16 myClass* storeTheObject = (*it); 17 17 } 18 18 }}}