#include <XnList.h>
Public Member Functions | |
Iterator (const Iterator &other) | |
XnValue & | operator* () const |
Iterator & | operator++ () |
Iterator | operator++ (int) |
Iterator & | operator-- () |
Iterator | operator-- (int) |
Protected Member Functions | |
Iterator (XnNode *pNode) | |
Friends | |
class | XnList |
XnList::Iterator::Iterator | ( | const Iterator & | other | ) | [inline] |
XnList::Iterator::Iterator | ( | XnNode * | pNode | ) | [inline, protected] |
XnValue& XnList::Iterator::operator* | ( | ) | const [inline] |
Get the value of the current object
Reimplemented from XnList::ConstIterator.
Iterator& XnList::Iterator::operator++ | ( | ) | [inline] |
Support ++iterator, go to the next object in the list
Reimplemented from XnList::ConstIterator.
Support iterator++, go to the next object in the list, returning the old value
Reimplemented from XnList::ConstIterator.
Iterator& XnList::Iterator::operator-- | ( | ) | [inline] |
Support --iterator, go to the next object in the list
Reimplemented from XnList::ConstIterator.
Support iterator--, go to the next object in the list, returning the old value
Reimplemented from XnList::ConstIterator.
friend class XnList [friend] |
Reimplemented from XnList::ConstIterator.