1 #ifndef __lib_esimpleconfig_h_
2 #define __lib_esimpleconfig_h_
11 std::string
getString(
const char *key,
const char* defaultvalue =
"");
12 int getInt(
const char *key,
int defaultvalue = 0);
13 bool getBool(
const char *key,
bool defaultvalue =
true);
Definition: esimpleconfig.cpp:15
std::string getString(const char *key, const char *defaultvalue)
Definition: esimpleconfig.cpp:50
bool getBool(const char *key, bool defaultvalue)
Definition: esimpleconfig.cpp:64
int getInt(const char *key, int defaultvalue)
Definition: esimpleconfig.cpp:57