Base class constant iterator used to offer iteration over various collections within the system.
More...
|
| | ConstBaseIterator (typename T::const_iterator start_iter, typename T::const_iterator end_iter) |
| | ConstBaseIterator constructor. More...
|
| |
|
virtual | ~ConstBaseIterator (void) |
| | ConstBaseIterator destructor.
|
| |
|
| ConstBaseIterator (const ConstBaseIterator< T, V > &org) |
| | ConstBaseIterator copy constructor.
|
| |
|
ConstBaseIterator< T, V > & | operator= (const ConstBaseIterator< T, V > &rhs) |
| | ConstBaseIterator assignment operator.
|
| |
|
virtual value_type | getCurrentValue (void) const =0 |
| | Return the value for the item at the current iterator position.
|
| |
|
bool | isAtEnd (void) const |
| | Return whether the current iterator position is at the end of the iterators range.
|
| |
|
bool | isAtStart (void) const |
| | Return whether the current iterator position is at the start of the iterators range.
|
| |
|
bool | operator== (const ConstBaseIterator< T, V > &rhs) const |
| | Compares two iterators. Return true if the current position of both iterators are equivalent.
|
| |
|
bool | operator!= (const ConstBaseIterator< T, V > &rhs) const |
| | Compares two iterators. Return true if the current position of the iterators are different.
|
| |
|
value_type | operator* () const |
| | Return the value for the current iterator position.
|
| |
|
void | toStart (void) |
| | Set the iterator current position to the start position.
|
| |
|
void | toEnd (void) |
| | Set the iterator current position to the end position.
|
| |
| | ConstBaseIterator (typename T::const_iterator start_iter, typename T::const_iterator end_iter) |
| | ConstBaseIterator constructor. More...
|
| |
|
virtual | ~ConstBaseIterator (void) |
| | ConstBaseIterator destructor.
|
| |
|
| ConstBaseIterator (const ConstBaseIterator< T, V > &org) |
| | ConstBaseIterator copy constructor.
|
| |
|
ConstBaseIterator< T, V > & | operator= (const ConstBaseIterator< T, V > &rhs) |
| | ConstBaseIterator assignment operator.
|
| |
|
virtual value_type | getCurrentValue (void) const =0 |
| | Return the value for the item at the current iterator position.
|
| |
|
bool | isAtEnd (void) const |
| | Return whether the current iterator position is at the end of the iterators range.
|
| |
|
bool | isAtStart (void) const |
| | Return whether the current iterator position is at the start of the iterators range.
|
| |
|
bool | operator== (const ConstBaseIterator< T, V > &rhs) const |
| | Compares two iterators. Return true if the current position of both iterators are equivalent.
|
| |
|
bool | operator!= (const ConstBaseIterator< T, V > &rhs) const |
| | Compares two iterators. Return true if the current position of the iterators are different.
|
| |
|
value_type | operator* () const |
| | Return the value for the current iterator position.
|
| |
|
void | toStart (void) |
| | Set the iterator current position to the start position.
|
| |
|
void | toEnd (void) |
| | Set the iterator current position to the end position.
|
| |
template<typename T, typename V = typename T::value_type>
class CEGUI::ConstBaseIterator< T, V >
Base class constant iterator used to offer iteration over various collections within the system.