Basefunctionality for IteratorWrappers. More...
#include <OgreIteratorWrapper.h>
Public Types | |
typedef IteratorType | const_iterator |
Typedef to fulfill container interface. More... | |
typedef IteratorType | iterator |
Typedef to fulfill container interface. More... | |
typedef ValType * | PointerType |
Type you expect to get by funktions like peekNext(Value)Ptr. More... | |
typedef ValType | ValueType |
Type you expect to get by funktions like peekNext(Value) More... | |
Public Member Functions | |
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... | |
Protected Attributes | |
IteratorType | mBegin |
IteratorType | mCurrent |
IteratorType | mEnd |
Private Member Functions | |
IteratorWrapper () | |
Private constructor since only the parameterised constructor should be used. More... | |
Basefunctionality for IteratorWrappers.
T | a Container like vector list map ... |
IteratorType | T::iterator or T::const_iterator |
ValType | T::mapped_type in case of a map, T::value_type for vector, list,... |
Have a look at VectorIteratorWrapper and MapIteratorWrapper for a concrete usage
Definition at line 47 of file OgreIteratorWrapper.h.
typedef IteratorType Ogre::IteratorWrapper< T, IteratorType, ValType >::const_iterator |
Typedef to fulfill container interface.
Useful if you want to use BOOST_FOREACH
Definition at line 83 of file OgreIteratorWrapper.h.
typedef IteratorType Ogre::IteratorWrapper< T, IteratorType, ValType >::iterator |
Typedef to fulfill container interface.
Useful if you want to use BOOST_FOREACH
Definition at line 74 of file OgreIteratorWrapper.h.
typedef ValType* Ogre::IteratorWrapper< T, IteratorType, ValType >::PointerType |
Type you expect to get by funktions like peekNext(Value)Ptr.
Definition at line 65 of file OgreIteratorWrapper.h.
typedef ValType Ogre::IteratorWrapper< T, IteratorType, ValType >::ValueType |
Type you expect to get by funktions like peekNext(Value)
Definition at line 63 of file OgreIteratorWrapper.h.
|
private |
Private constructor since only the parameterised constructor should be used.
|
inline |
Constructor.
Definition at line 90 of file OgreIteratorWrapper.h.
|
inline |
Bookmark to the begin of the underlying collection.
Definition at line 110 of file OgreIteratorWrapper.h.
|
inline |
Full access to the current iterator.
Definition at line 114 of file OgreIteratorWrapper.h.
|
inline |
Bookmark to the end (one behind the last element) of the underlying collection.
Definition at line 117 of file OgreIteratorWrapper.h.
|
inline |
Returns true if there are more items in the collection.
Definition at line 97 of file OgreIteratorWrapper.h.
Referenced by Ogre::RenderQueueGroup::merge().
|
inline |
Moves the iterator on one element.
Definition at line 104 of file OgreIteratorWrapper.h.
|
protected |
Definition at line 55 of file OgreIteratorWrapper.h.
Referenced by Ogre::IteratorWrapper< T, IteratorType, T::mapped_type >::begin().
|
protected |
|
protected |
Definition at line 57 of file OgreIteratorWrapper.h.
Referenced by Ogre::IteratorWrapper< T, IteratorType, T::mapped_type >::end(), and Ogre::IteratorWrapper< T, IteratorType, T::mapped_type >::hasMoreElements().