OGRE  13.6
Object-Oriented Graphics Rendering Engine
Ogre::MapIteratorWrapper< T, IteratorType > Class Template Reference

Prepared IteratorWrapper for key-value container. More...

#include <OgreIteratorWrapper.h>

+ Inheritance diagram for Ogre::MapIteratorWrapper< T, IteratorType >:

Public Types

typedef T::key_type KeyType
 Type you expect to get by funktions like peekNextKey. More...
 
typedef T::value_type PairType
 Unused, just to make it clear that map/set::value_type is not a ValueType. More...
 
typedef IteratorWrapper< T, IteratorType, typename T::mapped_type >::PointerType PointerType
 Redefined PointerType for a map/set. More...
 
typedef IteratorWrapper< T, IteratorType, typename T::mapped_type >::ValueType ValueType
 Redefined ValueType for a map/set. More...
 
- Public Types inherited from Ogre::IteratorWrapper< T, IteratorType, T::mapped_type >
typedef IteratorType const_iterator
 Typedef to fulfill container interface. More...
 
typedef IteratorType iterator
 Typedef to fulfill container interface. More...
 
typedef T::mapped_type * PointerType
 Type you expect to get by funktions like peekNext(Value)Ptr. More...
 
typedef T::mapped_type ValueType
 Type you expect to get by funktions like peekNext(Value) More...
 

Public Member Functions

 MapIteratorWrapper (IteratorType start, IteratorType last)
 Constructor. More...
 
ValueType getNext ()
 Returns the next(=current) value element in the collection, and advances to the next. More...
 
KeyType peekNextKey (void) const
 Returns the next(=current) key element in the collection, without advancing to the next. More...
 
ValueType peekNextValue () const
 Returns the next(=current) value element in the collection, without advancing to the next. More...
 
const PointerType peekNextValuePtr () const
 Returns a pointer to the next/current value element in the collection, without advancing to the next afterwards. More...
 
- Public Member Functions inherited from Ogre::IteratorWrapper< T, IteratorType, T::mapped_type >
 IteratorWrapper (IteratorType start, IteratorType last)
 Constructor. More...
 
const IteratorType & begin ()
 Bookmark to the begin of the underlying collection. More...
 
IteratorType & current ()
 Full access to the current iterator. More...
 
const IteratorType & end ()
 Bookmark to the end (one behind the last element) of the underlying collection. More...
 
bool hasMoreElements () const
 Returns true if there are more items in the collection. More...
 
void moveNext ()
 Moves the iterator on one element. More...
 

Detailed Description

template<typename T, typename IteratorType>
class Ogre::MapIteratorWrapper< T, IteratorType >

Prepared IteratorWrapper for key-value container.

Template Parameters
TContainer (map - or also set )
IteratorTypeT::iterator or T::const_iterator

Have a look at MapIterator and ConstMapIterator for a concrete usage

Member Typedef Documentation

◆ ValueType

template<typename T , typename IteratorType >
typedef IteratorWrapper<T, IteratorType, typename T::mapped_type>::ValueType Ogre::MapIteratorWrapper< T, IteratorType >::ValueType

Redefined ValueType for a map/set.

◆ PointerType

template<typename T , typename IteratorType >
typedef IteratorWrapper<T, IteratorType, typename T::mapped_type>::PointerType Ogre::MapIteratorWrapper< T, IteratorType >::PointerType

Redefined PointerType for a map/set.

◆ PairType

template<typename T , typename IteratorType >
typedef T::value_type Ogre::MapIteratorWrapper< T, IteratorType >::PairType

Unused, just to make it clear that map/set::value_type is not a ValueType.

◆ KeyType

template<typename T , typename IteratorType >
typedef T::key_type Ogre::MapIteratorWrapper< T, IteratorType >::KeyType

Type you expect to get by funktions like peekNextKey.

Constructor & Destructor Documentation

◆ MapIteratorWrapper()

template<typename T , typename IteratorType >
Ogre::MapIteratorWrapper< T, IteratorType >::MapIteratorWrapper ( IteratorType  start,
IteratorType  last 
)
inline

Constructor.

Provide a start and end iterator to initialise.

Member Function Documentation

◆ peekNextKey()

template<typename T , typename IteratorType >
KeyType Ogre::MapIteratorWrapper< T, IteratorType >::peekNextKey ( void  ) const
inline

Returns the next(=current) key element in the collection, without advancing to the next.

◆ peekNextValue()

template<typename T , typename IteratorType >
ValueType Ogre::MapIteratorWrapper< T, IteratorType >::peekNextValue ( ) const
inline

Returns the next(=current) value element in the collection, without advancing to the next.

◆ peekNextValuePtr()

template<typename T , typename IteratorType >
const PointerType Ogre::MapIteratorWrapper< T, IteratorType >::peekNextValuePtr ( ) const
inline

Returns a pointer to the next/current value element in the collection, without advancing to the next afterwards.

◆ getNext()

template<typename T , typename IteratorType >
ValueType Ogre::MapIteratorWrapper< T, IteratorType >::getNext ( )
inline

Returns the next(=current) value element in the collection, and advances to the next.


The documentation for this class was generated from the following file: