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