osgEarth 2.1.1
|
Experimental and untested: iterator for object and array value. More...
Public Types | |
typedef unsigned int | size_t |
typedef int | difference_type |
typedef Value & | reference |
typedef Value * | pointer |
typedef ValueIterator | SelfType |
Public Member Functions | |
ValueIterator () | |
ValueIterator (const ValueConstIterator &other) | |
ValueIterator (const ValueIterator &other) | |
SelfType & | operator= (const SelfType &other) |
SelfType | operator++ (int) |
SelfType | operator-- (int) |
SelfType & | operator-- () |
SelfType & | operator++ () |
reference | operator* () const |
Private Member Functions | |
ValueIterator (const Value::ObjectValues::iterator ¤t) | |
Friends | |
class | Value |
Experimental and untested: iterator for object and array value.
typedef int osgEarth::Json::ValueIterator::difference_type |
Reimplemented from osgEarth::Json::ValueIteratorBase.
Reimplemented from osgEarth::Json::ValueIteratorBase.
typedef unsigned int osgEarth::Json::ValueIterator::size_t |
Reimplemented from osgEarth::Json::ValueIteratorBase.
ValueIterator::ValueIterator | ( | ) |
Definition at line 349 of file JsonUtils.cpp.
{ }
ValueIterator::ValueIterator | ( | const ValueConstIterator & | other | ) |
Definition at line 371 of file JsonUtils.cpp.
: ValueIteratorBase( other ) { }
ValueIterator::ValueIterator | ( | const ValueIterator & | other | ) |
Definition at line 376 of file JsonUtils.cpp.
: ValueIteratorBase( other ) { }
ValueIterator::ValueIterator | ( | const Value::ObjectValues::iterator & | current | ) | [explicit, private] |
Use by Value to create an iterator.
Definition at line 355 of file JsonUtils.cpp.
: ValueIteratorBase( current ) { }
reference osgEarth::Json::ValueIterator::operator* | ( | ) | const [inline] |
SelfType& osgEarth::Json::ValueIterator::operator++ | ( | ) | [inline] |
SelfType osgEarth::Json::ValueIterator::operator++ | ( | int | ) | [inline] |
SelfType osgEarth::Json::ValueIterator::operator-- | ( | int | ) | [inline] |
SelfType& osgEarth::Json::ValueIterator::operator-- | ( | ) | [inline] |
ValueIterator & ValueIterator::operator= | ( | const SelfType & | other | ) |
Definition at line 382 of file JsonUtils.cpp.
{ copy( other ); return *this; }