![]() |
OpenNI 1.5.4
|
#include <XnCppWrapper.h>
Public Member Functions | |
XnBool | operator== (const Iterator &other) const |
XnBool | operator!= (const Iterator &other) const |
Iterator & | operator++ () |
Iterator | operator++ (int) |
Iterator & | operator-- () |
Iterator | operator-- (int) |
NodeInfo | operator* () |
Friends | |
class | NodeInfoList |
Represents an iterator over a NodeInfoList list.
XnBool xn::NodeInfoList::Iterator::operator!= | ( | const Iterator & | other | ) | const [inline] |
Returns whether the iterator points to a different location than another iterator.
[in] | other | Another iterator |
NodeInfo xn::NodeInfoList::Iterator::operator* | ( | ) | [inline] |
Gets the NodeInfo object pointed by the iterator.
Iterator& xn::NodeInfoList::Iterator::operator++ | ( | ) | [inline] |
Moves the iterator to the next object. If the end of the list was reached, the iterator will now be equal to NodeInfoList::End().
Iterator xn::NodeInfoList::Iterator::operator++ | ( | int | ) | [inline] |
Returns an iterator pointing at the next object. If the end of the list was reached, that iterator will now be equal to NodeInfoList::End().
Iterator& xn::NodeInfoList::Iterator::operator-- | ( | ) | [inline] |
Moves the iterator to the previous object.
Iterator xn::NodeInfoList::Iterator::operator-- | ( | int | ) | [inline] |
Returns an iterator pointing at the previous object.
XnBool xn::NodeInfoList::Iterator::operator== | ( | const Iterator & | other | ) | const [inline] |
Returns whether the iterator points to the same location as another iterator.
[in] | other | Another iterator |
Remarks
This method can be used for checking if the two iterators are pointing to the same NodeInfo object.
Note that the two iterators can also both point to NULL.
friend class NodeInfoList [friend] |