![]() |
OpenNI 1.5.7
|
#include <XnListT.h>

Public Member Functions | |
| Iterator () | |
| Iterator (LinkedNode *pNode) | |
| Iterator (const Iterator &other) | |
| Iterator & | operator++ () |
| Iterator | operator++ (int) |
| Iterator & | operator-- () |
| Iterator | operator-- (int) |
| T & | operator* () const |
| T * | operator-> () const |
An iterator for iterating the list
| XnListT< T, TAlloc >::Iterator::Iterator | ( | ) | [inline] |
| XnListT< T, TAlloc >::Iterator::Iterator | ( | LinkedNode * | pNode | ) | [inline] |
| XnListT< T, TAlloc >::Iterator::Iterator | ( | const Iterator & | other | ) | [inline] |
| T& XnListT< T, TAlloc >::Iterator::operator* | ( | ) | const [inline] |
Get the value of the current object
Reimplemented from XnListT< T, TAlloc >::ConstIterator.
| Iterator& XnListT< T, TAlloc >::Iterator::operator++ | ( | ) | [inline] |
Support ++iterator, go to the next object in the list
Reimplemented from XnListT< T, TAlloc >::ConstIterator.
| Iterator XnListT< T, TAlloc >::Iterator::operator++ | ( | int | ) | [inline] |
Support iterator++, go to the next object in the list, returning the old value
Reimplemented from XnListT< T, TAlloc >::ConstIterator.
| Iterator& XnListT< T, TAlloc >::Iterator::operator-- | ( | ) | [inline] |
Support --iterator, go to the next object in the list
Reimplemented from XnListT< T, TAlloc >::ConstIterator.
| Iterator XnListT< T, TAlloc >::Iterator::operator-- | ( | int | ) | [inline] |
Support iterator--, go to the next object in the list, returning the old value
Reimplemented from XnListT< T, TAlloc >::ConstIterator.
| T* XnListT< T, TAlloc >::Iterator::operator-> | ( | ) | const [inline] |
Get a pointer to the value of the current object
Reimplemented from XnListT< T, TAlloc >::ConstIterator.
1.7.6.1