|
U3D
Open-source, cross-platform 2D and 3D game engine built in C++
|
Doubly-linked list iterator base class. More...
#include </var/dev/u3d/stable/Source/Urho3D/Container/ListBase.h>
Public Member Functions | |
| ListIteratorBase () | |
| Construct. | |
| ListIteratorBase (ListNodeBase *ptr) | |
| Construct with a node pointer. | |
| bool | operator== (const ListIteratorBase &rhs) const |
| Test for equality with another iterator. | |
| bool | operator!= (const ListIteratorBase &rhs) const |
| Test for inequality with another iterator. | |
| void | GotoNext () |
| Go to the next node. | |
| void | GotoPrev () |
| Go to the previous node. | |
Public Attributes | |
| ListNodeBase * | ptr_ |
| Node pointer. | |
Doubly-linked list iterator base class.