#include <stl_slist.h>
Inheritance diagram for __slist_iterator:


Public Types | |
| typedef __slist_iterator< T, T &, T * > | iterator |
| typedef __slist_iterator< T, const T &, const T * > | const_iterator |
| typedef __slist_iterator< T, Ref, Ptr > | self |
| typedef T | value_type |
| typedef Ptr | pointer |
| typedef Ref | reference |
| typedef __slist_node< T > | list_node |
Public Methods | |
| __slist_iterator (list_node *x) | |
| __slist_iterator () | |
| __slist_iterator (const iterator &x) | |
| reference | operator * () const |
| pointer | operator-> () const |
| self & | operator++ () |
| self | operator++ (int) |
|
|||||
|
Definition at line 114 of file stl_slist.h. |
|
|||||
|
Definition at line 113 of file stl_slist.h. |
|
|||||
|
Definition at line 120 of file stl_slist.h. |
|
|||||
|
Definition at line 118 of file stl_slist.h. Referenced by operator->. |
|
|||||
|
Definition at line 119 of file stl_slist.h. Referenced by operator *. |
|
|||||
|
Definition at line 115 of file stl_slist.h. |
|
|||||
|
Definition at line 117 of file stl_slist.h. |
|
||||||||||
|
Definition at line 122 of file stl_slist.h.
00122 : __slist_iterator_base(x) {} |
|
|||||||||
|
Definition at line 123 of file stl_slist.h.
00123 : __slist_iterator_base(0) {} |
|
||||||||||
|
Definition at line 124 of file stl_slist.h. References __slist_iterator_base::node.
00124 : __slist_iterator_base(x.node) {} |
|
|||||||||
|
Definition at line 126 of file stl_slist.h. References __slist_iterator_base::node, and reference. Referenced by operator->.
|
|
||||||||||
|
Definition at line 136 of file stl_slist.h. References __slist_iterator_base::incr.
|
|
|||||||||
|
Definition at line 131 of file stl_slist.h. References __slist_iterator_base::incr.
00132 {
00133 incr();
00134 return *this;
00135 }
|
|
|||||||||
|
Definition at line 128 of file stl_slist.h. References operator *, and pointer.
00128 { return &(operator*()); }
|
| Documentation generated on Thu May 2 15:03:21 2002 |
Generated with doxygen 1.2.12 by Dimitri van Heesch , 1997-2001 |