Public Member Functions | |
link * | getNode () |
bool | equal (iterator_base const &other) const |
void | increment () |
void | decrement () |
Protected Member Functions | |
void | setNext (link *next) |
void | setPrev (link *prev) |
Protected Attributes | |
link * | node_ |
Friends | |
class | lodge_list |
|
Definition at line 118 of file lodge_list.h. References gslib::static_container::lodge_list< Value >::iterator_base::node_. Referenced by gslib::static_container::lodge_list< Value >::iterator::operator--(), and gslib::static_container::lodge_list< Value >::const_iterator::operator--().
|
|
Definition at line 111 of file lodge_list.h. References gslib::static_container::lodge_list< Value >::iterator_base::node_. Referenced by gslib::static_container::lodge_list< Value >::iterator::operator!=(), gslib::static_container::lodge_list< Value >::const_iterator::operator!=(), gslib::static_container::lodge_list< Value >::iterator::operator==(), and gslib::static_container::lodge_list< Value >::const_iterator::operator==().
00111 { 00112 return this->node_ == other.node_; 00113 } |
|
Definition at line 107 of file lodge_list.h. References gslib::static_container::lodge_list< Value >::iterator_base::node_.
00107 { 00108 BOOST_ASSERT( 0 != node_ ); 00109 return node_; 00110 } |
|
Definition at line 114 of file lodge_list.h. References gslib::static_container::lodge_list< Value >::iterator_base::node_. Referenced by gslib::static_container::lodge_list< Value >::iterator::operator++(), and gslib::static_container::lodge_list< Value >::const_iterator::operator++().
|
|
Definition at line 96 of file lodge_list.h. References gslib::static_container::lodge_list< Value >::iterator_base::node_.
00096 { 00097 BOOST_ASSERT( 0 != node_ ); 00098 node_->next = next; 00099 } |
|
Definition at line 100 of file lodge_list.h. References gslib::static_container::lodge_list< Value >::iterator_base::node_.
00100 { 00101 BOOST_ASSERT( 0 != node_ ); 00102 node_->prev = prev; 00103 } |
|
Reimplemented in gslib::static_container::lodge_list< Value >::const_iterator, and gslib::static_container::lodge_list< Value >::iterator. Definition at line 104 of file lodge_list.h. |
|