Changeset 5244 in orxonox.OLD for trunk/src/lib/util
- Timestamp:
- Sep 24, 2005, 8:06:05 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/list.h
r5243 r5244 520 520 } 521 521 522 523 522 /** 524 523 * use it to move through the list without interfering with the iteration 524 * @returns previous list element 525 * 526 * this stepping mode will !not! step beyond the boundraries of the List! 525 527 */ 526 528 template<class T> … … 540 542 * use it to move backwards through the list without interfering with the itereation 541 543 * @returns next list element 544 * 545 * this stepping mode will !not! step beyond the boundraries of the List! 542 546 */ 543 547 template<class T> … … 553 557 } 554 558 559 /** 560 * @returns the current Element 561 */ 555 562 template<class T> 556 563 inline T* tIterator<T>::getCurrent()
Note: See TracChangeset
for help on using the changeset viewer.