|
RDFS
The Rice Comp413 2017 class' continuation on the work of the 2016 RDFS.
|
Represents single configuration that has representing level, configuration type and a string based value. More...
#include <easylogging++.h>
Classes | |
| class | Predicate |
| Used to find configuration from configuration (pointers) repository. Avoid using it. More... | |
Public Member Functions | |
| Configuration (const Configuration &c) | |
| Configuration & | operator= (const Configuration &c) |
| Configuration (Level level, ConfigurationType configurationType, const std::string &value) | |
| Full constructor used to sets value of configuration. | |
| Level | level (void) const |
| Gets level of current configuration. | |
| ConfigurationType | configurationType (void) const |
| Gets configuration type of current configuration. | |
| const std::string & | value (void) const |
| Gets string based configuration value. | |
| void | setValue (const std::string &value) |
| Set string based configuration value. More... | |
| virtual void | log (el::base::type::ostream_t &os) const |
Represents single configuration that has representing level, configuration type and a string based value.
String based value means any value either its boolean, integer or string itself, it will be embedded inside quotes and will be parsed later.
Consider some examples below:
|
inline |
Set string based configuration value.
| value | Value to set. Values have to be std::string; For boolean values use "true", "false", for any integral values use them in quotes. They will be parsed when configuring |
1.8.6