SPH
|
Interface allowing to enumerate all entries in the settings. More...
#include <VirtualSettings.h>
Public Member Functions | |
virtual void | onCategory (const std::string &name) const =0 |
Called for every category in the settings. More... | |
virtual void | onEntry (const std::string &key, IVirtualEntry &entry) const =0 |
Called for every entry in the current category. More... | |
![]() | |
virtual | ~Polymorphic () |
Interface allowing to enumerate all entries in the settings.
Definition at line 293 of file VirtualSettings.h.
|
pure virtual |
Called for every category in the settings.
Every subsequent call of onEntry corresponds to an entry belonging to this category.
name | Name of the category |
Implemented in AddParamsProc.
|
pure virtual |
Called for every entry in the current category.
key | Identifier of the entry |
entry | Stored entry |
Implemented in LoadProc, SaveProc, CopyEntriesProc, LoadProc, AddParamProc, and SetAccessorsProc.