CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Types | Public Member Functions | Protected Member Functions | Private Attributes
Json::ValueIteratorBase Class Reference

base class for Value iterators. More...

#include <value.h>

Inheritance diagram for Json::ValueIteratorBase:
Json::ValueConstIterator Json::ValueIterator

Public Types

typedef int difference_type
 
typedef ValueIteratorBase SelfType
 
typedef unsigned int size_t
 

Public Member Functions

UInt index () const
 Return the index of the referenced Value. -1 if it is not an arrayValue. More...
 
Value key () const
 Return either the index or the member name of the referenced value as a Value. More...
 
const char * memberName () const
 Return the member name of the referenced Value. "" if it is not an objectValue. More...
 
bool operator!= (const SelfType &other) const
 
difference_type operator- (const SelfType &other) const
 
bool operator== (const SelfType &other) const
 
 ValueIteratorBase ()
 
 ValueIteratorBase (const Value::ObjectValues::iterator &current)
 

Protected Member Functions

difference_type computeDistance (const SelfType &other) const
 
void copy (const SelfType &other)
 
void decrement ()
 
Valuederef () const
 
void increment ()
 
bool isEqual (const SelfType &other) const
 

Private Attributes

Value::ObjectValues::iterator current_
 
bool isNull_
 

Detailed Description

base class for Value iterators.

Definition at line 798 of file value.h.

Member Typedef Documentation

Definition at line 801 of file value.h.

Definition at line 802 of file value.h.

typedef unsigned int Json::ValueIteratorBase::size_t

Definition at line 800 of file value.h.

Constructor & Destructor Documentation

Json::ValueIteratorBase::ValueIteratorBase ( )
Json::ValueIteratorBase::ValueIteratorBase ( const Value::ObjectValues::iterator &  current)
explicit

Member Function Documentation

difference_type Json::ValueIteratorBase::computeDistance ( const SelfType other) const
protected
void Json::ValueIteratorBase::copy ( const SelfType other)
protected
void Json::ValueIteratorBase::decrement ( )
protected
Value& Json::ValueIteratorBase::deref ( ) const
protected
void Json::ValueIteratorBase::increment ( )
protected
UInt Json::ValueIteratorBase::index ( ) const

Return the index of the referenced Value. -1 if it is not an arrayValue.

Referenced by BeautifulSoup.PageElement::_invert().

bool Json::ValueIteratorBase::isEqual ( const SelfType other) const
protected
Value Json::ValueIteratorBase::key ( ) const

Return either the index or the member name of the referenced value as a Value.

const char* Json::ValueIteratorBase::memberName ( ) const

Return the member name of the referenced Value. "" if it is not an objectValue.

bool Json::ValueIteratorBase::operator!= ( const SelfType other) const
inline

Definition at line 814 of file value.h.

814 { return !isEqual(other); }
bool isEqual(const SelfType &other) const
difference_type Json::ValueIteratorBase::operator- ( const SelfType other) const
inline

Definition at line 816 of file value.h.

816 { return computeDistance(other); }
difference_type computeDistance(const SelfType &other) const
bool Json::ValueIteratorBase::operator== ( const SelfType other) const
inline

Definition at line 812 of file value.h.

812 { return isEqual(other); }
bool isEqual(const SelfType &other) const

Member Data Documentation

Value::ObjectValues::iterator Json::ValueIteratorBase::current_
private

Definition at line 842 of file value.h.

bool Json::ValueIteratorBase::isNull_
private

Definition at line 844 of file value.h.