xmlwrapp
Lightweight C++ XML parsing library
|
The xml::node::const_iterator provides a way to access children nodes similar to a standard C++ container. More...
#include <node.h>
Public Member Functions | |
const_iterator & | operator++ () |
prefix increment More... | |
const_iterator | operator++ (int) |
postfix increment (avoid if possible for better performance) More... | |
The xml::node::const_iterator provides a way to access children nodes similar to a standard C++ container.
The nodes that are pointed to by the const_iterator cannot be changed.
Note that this is only a forward iterator.
const_iterator& xml::node::const_iterator::operator++ | ( | ) |
prefix increment
const_iterator xml::node::const_iterator::operator++ | ( | int | ) |
postfix increment (avoid if possible for better performance)