#include <document.h>
Public Types | |
typedef std::input_iterator_tag | iterator_category |
typedef std::string | value_type |
typedef valueno_diff | difference_type |
typedef std::string * | pointer |
typedef std::string & | reference |
Public Methods | |
ValueIterator () | |
Default constructor - for declaring an uninitialised iterator. More... | |
~ValueIterator () | |
Destructor. More... | |
ValueIterator (const ValueIterator &other) | |
Copying is allowed (and is cheap). More... | |
void | operator= (const ValueIterator &other) |
Assignment is allowed (and is cheap). More... | |
ValueIterator & | operator++ () |
void | operator++ (int) |
const std::string & | operator * () const |
Get the value for the current position. More... | |
const std::string * | operator-> () const |
Get the value for the current position. More... | |
valueno | get_valueno () const |
Get the number of the value at the current position. More... | |
std::string | get_description () const |
Returns a string describing this object. More... | |
Public Attributes | |
Internal * | internal |
Friends | |
class | Document |
bool | operator== (const ValueIterator &a, const ValueIterator &b) |
|
Default constructor - for declaring an uninitialised iterator.
|
|
Destructor.
|
|
Copying is allowed (and is cheap).
|
|
Returns a string describing this object. Introspection method. |
|
Get the number of the value at the current position.
|
|
Get the value for the current position.
|
|
Get the value for the current position.
|
|
Assignment is allowed (and is cheap).
|