It's a bidirectional iterator with value type 'xml_node'.
Public Types | |
typedef ptrdiff_t | difference_type |
Iterator traits. | |
typedef xml_node | value_type |
typedef xml_node * | pointer |
typedef xml_node & | reference |
typedef std::bidirectional_iterator_tag | iterator_category |
Public Member Functions | |
xml_node_iterator () | |
Default ctor. | |
xml_node_iterator (const xml_node &node) | |
Initializing ctor. | |
bool | operator== (const xml_node_iterator &rhs) const |
Check if this iterator is equal to rhs. | |
bool | operator!= (const xml_node_iterator &rhs) const |
Check if this iterator is not equal to rhs. | |
xml_node & | operator * () |
Dereferencing operator. | |
xml_node * | operator-> () |
Member access operator. | |
const xml_node_iterator & | operator++ () |
Pre-increment operator. | |
xml_node_iterator | operator++ (int) |
Post-increment operator. | |
const xml_node_iterator & | operator-- () |
Pre-decrement operator. | |
xml_node_iterator | operator-- (int) |
Post-decrement operator. | |
Friends | |
class | xml_node |
|
Initializing ctor.
|
|
Check if this iterator is equal to rhs.
|
|
Check if this iterator is not equal to rhs.
|
|
Dereferencing operator.
|
|
Member access operator.
|
|
Pre-increment operator.
|
|
Post-increment operator.
|
|
Pre-decrement operator.
|
|
Post-decrement operator.
|