#include <djv_propset.h>

Public Member Functions | |
| virtual bool | next ()=0 |
| virtual void | reset ()=0 |
| virtual String | getKey () const =0 |
| virtual String | getValue () const =0 |
This class is used to enumerate all the property entries.
| virtual String Celartem::DjVu::PropertySetIterator::getKey | ( | ) | const [pure virtual] |
Get the key of the current property.
| virtual String Celartem::DjVu::PropertySetIterator::getValue | ( | ) | const [pure virtual] |
Get the value of the current property.
| virtual bool Celartem::DjVu::PropertySetIterator::next | ( | ) | [pure virtual] |
Move to the next property.
true if the move succeeded.false. The following code illustate how to use PropertySetIterator. AutoPtr<PropertySetIterator> it = propSet->enumProperties(); while(it->next()) { // we can access getKey, getValue here. }
| virtual void Celartem::DjVu::PropertySetIterator::reset | ( | ) | [pure virtual] |
Reset the iteration.