OGRE 14.3
Object-Oriented Graphics Rendering Engine
Loading...
Searching...
No Matches
Ogre::VectorIteratorWrapper< T, IteratorType > Class Template Reference

Prepared IteratorWrapper for container like std::vector. More...

#include <OgreIteratorWrapper.h>

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

Public Types

typedef IteratorWrapper< T, IteratorType, typenameT::value_type >::PointerType PointerType
 
typedef IteratorWrapper< T, IteratorType, typenameT::value_type >::ValueType ValueType
 
- Public Types inherited from Ogre::IteratorWrapper< T, IteratorType, T::value_type >
typedef IteratorType const_iterator
 Typedef to fulfill container interface.
 
typedef IteratorType iterator
 Typedef to fulfill container interface.
 
typedef T::value_type * PointerType
 Type you expect to get by funktions like peekNext(Value)Ptr.
 
typedef T::value_type ValueType
 Type you expect to get by funktions like peekNext(Value)
 

Public Member Functions

 VectorIteratorWrapper (IteratorType start, IteratorType last)
 c'tor
 
ValueType getNext ()
 Returns the next(=current) value element in the collection, and advances to the next.
 
ValueType peekNext () const
 Returns the next(=current) element in the collection, without advancing to the next.
 
PointerType peekNextPtr () const
 Returns a pointer to the next(=current) element in the collection, without advancing to the next afterwards.
 
- Public Member Functions inherited from Ogre::IteratorWrapper< T, IteratorType, T::value_type >
 IteratorWrapper (IteratorType start, IteratorType last)
 Constructor.
 
const IteratorTypebegin ()
 Bookmark to the begin of the underlying collection.
 
IteratorTypecurrent ()
 Full access to the current iterator.
 
const IteratorTypeend ()
 Bookmark to the end (one behind the last element) of the underlying collection.
 
bool hasMoreElements () const
 Returns true if there are more items in the collection.
 
void moveNext ()
 Moves the iterator on one element.
 

Detailed Description

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

Prepared IteratorWrapper for container like std::vector.

Template Parameters
T= Container eg vector
IteratorTypeT::iterator or T::const_iterator

Have a look at VectorIterator and ConstVectorIterator for a more concrete usage

Member Typedef Documentation

◆ ValueType

typedef IteratorWrapper<T,IteratorType,typenameT::value_type>::ValueType Ogre::VectorIteratorWrapper< T, IteratorType >::ValueType

◆ PointerType

typedef IteratorWrapper<T,IteratorType,typenameT::value_type>::PointerType Ogre::VectorIteratorWrapper< T, IteratorType >::PointerType

Constructor & Destructor Documentation

◆ VectorIteratorWrapper()

Ogre::VectorIteratorWrapper< T, IteratorType >::VectorIteratorWrapper ( IteratorType  start,
IteratorType  last 
)
inline

c'tor

Constructor that provide a start and end iterator to initialise.

Parameters
startStart iterator
lastEnd iterator

Member Function Documentation

◆ peekNext()

ValueType Ogre::VectorIteratorWrapper< T, IteratorType >::peekNext ( ) const
inline

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

◆ peekNextPtr()

PointerType Ogre::VectorIteratorWrapper< T, IteratorType >::peekNextPtr ( ) const
inline

Returns a pointer to the next(=current) element in the collection, without advancing to the next afterwards.

◆ getNext()

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: