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

Public Member Functions | |
| ConstIterator () | |
| ConstIterator (LinkedNode *pNode) | |
| ConstIterator (const ConstIterator &other) | |
| ConstIterator & | operator++ () |
| ConstIterator | operator++ (int) |
| ConstIterator & | operator-- () |
| ConstIterator | operator-- (int) |
| XnBool | operator== (const ConstIterator &other) const |
| XnBool | operator!= (const ConstIterator &other) const |
| T const & | operator* () const |
| T const * | operator-> () const |
Protected Attributes | |
| LinkedNode * | m_pCurrent |
Friends | |
| class | XnListT |
An iterator for iterating the list without modifying values.
|
inline |
|
inline |
|
inline |
|
inline |
Operator to check if two iterators point to different objects
| other | [in] instance to compare with |
|
inline |
Get the value of the current object (const version)
|
inline |
Support ++iterator, go to the next object in the list
|
inline |
Support iterator++, go to the next object in the list, returning the old value
|
inline |
Support –iterator, go to the next object in the list
|
inline |
Support iterator–, go to the next object in the list, returning the old value
|
inline |
Get a pointer to the value of the current object (const version)
|
inline |
Operator to check if two iterators point to the same object
| other | [in] instance to compare with |
|
friend |
|
protected |
The current XnNode