|  | OGRE 14.3
    Object-Oriented Graphics Rendering Engine | 
Prepared IteratorWrapper for container like std::vector. More...
#include <OgreIteratorWrapper.h>
 Inheritance diagram for Ogre::VectorIteratorWrapper< T, IteratorType >:
 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 IteratorType & | begin () | 
| Bookmark to the begin of the underlying collection. | |
| IteratorType & | current () | 
| Full access to the current iterator. | |
| const IteratorType & | end () | 
| 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. | |
Prepared IteratorWrapper for container like std::vector.
| T | = Container eg vector | 
| IteratorType | T::iterator or T::const_iterator | 
Have a look at VectorIterator and ConstVectorIterator for a more concrete usage
| typedef IteratorWrapper<T,IteratorType,typenameT::value_type>::ValueType Ogre::VectorIteratorWrapper< T, IteratorType >::ValueType | 
| typedef IteratorWrapper<T,IteratorType,typenameT::value_type>::PointerType Ogre::VectorIteratorWrapper< T, IteratorType >::PointerType | 
| 
 | inline | 
c'tor
Constructor that provide a start and end iterator to initialise.
| start | Start iterator | 
| last | End iterator | 
Referenced by Ogre::ConstVectorIterator< EnabledAnimationStateList >::ConstVectorIterator(), Ogre::ConstVectorIterator< EnabledAnimationStateList >::ConstVectorIterator(), Ogre::VectorIterator< Passes >::VectorIterator(), and Ogre::VectorIterator< Passes >::VectorIterator().
| 
 | inline | 
Returns the next(=current) element in the collection, without advancing to the next.
| 
 | inline | 
Returns a pointer to the next(=current) element in the collection, without advancing to the next afterwards.
| 
 | inline | 
Returns the next(=current) value element in the collection, and advances to the next.