SPH
|
Interface for value written to the config file. More...
#include <Config.h>
Public Member Functions | |
virtual std::string | write () const =0 |
Writes the value into a string. More... | |
virtual void | read (const std::string &source)=0 |
Reads the value from string and stores it internally. More... | |
![]() | |
virtual | ~Polymorphic () |
Interface for value written to the config file.
It provides a way to serialize and deserialize the value from string. This class should not be implemented directly, instead new types should be added by specialization of class ConfigValue; IConfigValue serves only as type erasure, but to access the stored value, it is necessary to cast it to ConfigValue.
|
pure virtual |
Reads the value from string and stores it internally.
ConfigException | if the value cannot be deserialized. |
Implemented in ConfigValue< Path >, ConfigValue< std::string >, ConfigValue< Interval >, ConfigValue< Vector >, and ConfigValue< Type >.
|
pure virtual |
Writes the value into a string.
Implemented in ConfigValue< Path >, ConfigValue< std::string >, ConfigValue< Interval >, ConfigValue< Vector >, and ConfigValue< Type >.