#include <genlist.h>
Inheritance diagram for ListT< T >::Iterator:
Public Member Functions | |
Iterator () | |
BOOL | operator== (const Iterator &x) const |
Reference | operator * () const |
Iterator & | operator++ () |
Iterator | operator++ (INT32) |
Iterator & | operator-- () |
Iterator | operator-- (INT32) |
Protected Member Functions | |
Iterator (LinkType x) | |
Protected Attributes | |
LinkType | m_Node |
Friends | |
class | ListT< T > |
class | ConstIterator |
Definition at line 234 of file genlist.h.
|
Definition at line 241 of file genlist.h. 00241 : m_Node(x) {}
|
|
Definition at line 244 of file genlist.h.
|
|
Definition at line 247 of file genlist.h.
|
|
Definition at line 254 of file genlist.h. 00255 { 00256 Iterator tmp = *this; 00257 ++*this; 00258 return tmp; 00259 }
|
|
Definition at line 248 of file genlist.h.
|
|
Definition at line 265 of file genlist.h. 00266 { 00267 Iterator tmp = *this; 00268 --*this; 00269 return tmp; 00270 }
|
|
Definition at line 260 of file genlist.h.
|
|
Definition at line 246 of file genlist.h. 00246 { return m_Node == x.m_Node; }
|
|
|
|
|
|
|