#include <genlist.h>
Inheritance diagram for ListT< T >::ConstIterator:
Public Member Functions | |
ConstIterator () | |
ConstIterator (const Iterator &x) | |
BOOL | operator== (const ConstIterator &x) const |
ConstReference | operator * () const |
ConstIterator & | operator++ () |
ConstIterator | operator++ (INT32) |
ConstIterator & | operator-- () |
ConstIterator | operator-- (INT32) |
Protected Member Functions | |
ConstIterator (LinkType x) | |
Protected Attributes | |
LinkType | m_Node |
Friends | |
class | ListT< T > |
Definition at line 273 of file genlist.h.
|
Definition at line 278 of file genlist.h. 00278 : m_Node(x) {}
|
|
Definition at line 280 of file genlist.h.
|
|
Definition at line 281 of file genlist.h. 00281 : m_Node(x.m_Node) {}
|
|
Definition at line 284 of file genlist.h.
|
|
Definition at line 293 of file genlist.h. 00294 { 00295 ConstIterator tmp = *this; 00296 ++*this; 00297 return tmp; 00298 }
|
|
Definition at line 287 of file genlist.h.
|
|
Definition at line 306 of file genlist.h. 00307 { 00308 ConstIterator tmp = *this; 00309 --*this; 00310 return tmp; 00311 }
|
|
Definition at line 300 of file genlist.h.
|
|
Definition at line 282 of file genlist.h. 00282 { return m_Node == x.m_Node; }
|
|
|
|
|