|
WoW Model Viewer
Your premiere tool for viewing, equipping and animating World of Warcraft models.
|
Simple forward iterator over a collection of pointers. More...
#include <BaseIterator.h>
Public Member Functions | |
| BaseIterator () | |
| virtual | ~BaseIterator () |
| void | begin () |
| Reset the iterator to the first element. | |
| bool | end () |
| Check whether the iterator has reached the end. | |
| void | operator++ (int) |
| Advance the iterator (postfix). | |
| int | size () |
| Return the number of items. | |
Protected Attributes | |
| std::vector< ItemType * > | m_items |
| Stored item pointers. | |
| std::vector< ItemType * >::iterator | m_internalIt |
| Current position. | |
Simple forward iterator over a collection of pointers.
| ItemType | The pointed-to element type. |
Definition at line 8 of file BaseIterator.h.
| BaseIterator< ItemType >::BaseIterator | ( | ) |
Definition at line 32 of file BaseIterator.h.
|
virtual |
Definition at line 38 of file BaseIterator.h.
| void BaseIterator< ItemType >::begin | ( | ) |
Reset the iterator to the first element.
Definition at line 43 of file BaseIterator.h.
| bool BaseIterator< ItemType >::end | ( | ) |
Check whether the iterator has reached the end.
Definition at line 49 of file BaseIterator.h.
| void BaseIterator< ItemType >::operator++ | ( | int | ) |
Advance the iterator (postfix).
Definition at line 55 of file BaseIterator.h.
|
inline |
Return the number of items.
Definition at line 24 of file BaseIterator.h.
|
protected |
Current position.
Definition at line 28 of file BaseIterator.h.
|
protected |
Stored item pointers.
Definition at line 27 of file BaseIterator.h.