Non-Const version of the BaseFilteredIterator. Meant to be used for MappingIterator instances. More...
#include <MappingUtils.h>
Inherits BaseFilteredIterator< MappingIterator >.
Public Member Functions | |
FilteredMappingIterator (MappingIterator *orig) | |
virtual void | setValue (double value) |
Changes the value of the Mapping at the current position. |
Non-Const version of the BaseFilteredIterator. Meant to be used for MappingIterator instances.
Definition at line 78 of file MappingUtils.h.
virtual void FilteredMappingIterator::setValue | ( | double | value | ) | [inline, virtual] |
Changes the value of the Mapping at the current position.
Implementations of this method should provide constant complexity.
Implements MappingIterator.
Definition at line 85 of file MappingUtils.h.
References MappingIterator::setValue().
{ origIterator->setValue(value); }