Abstract interface for a iterator of a list. More...
#include <template.h>
Public Member Functions | |
virtual | ~ConstIterator () |
virtual void | toFirst ()=0 |
virtual void | toLast ()=0 |
virtual void | toNext ()=0 |
virtual void | toPrev ()=0 |
virtual bool | current (TemplateVariant &v) const =0 |
Abstract interface for a iterator of a list.
Definition at line 333 of file template.h.
|
inlinevirtual |
|
pure virtual |
Implemented in TemplateListConstIterator, and GenericConstIterator.
|
pure virtual |
Moves iterator to the first element in the list
Implemented in TemplateListConstIterator, and GenericConstIterator.
|
pure virtual |
Moves iterator to the last element in the list
Implemented in TemplateListConstIterator, and GenericConstIterator.
|
pure virtual |
Moves iterator to the next element in the list
Implemented in TemplateListConstIterator, and GenericConstIterator.
|
pure virtual |
Moves iterator to the previous element in the list
Implemented in TemplateListConstIterator, and GenericConstIterator.