diff options
author | louiz’ <louiz@louiz.org> | 2017-09-09 17:09:17 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2017-09-09 17:09:17 +0200 |
commit | bfcf29451787d10c747ad79cb3fd177ac86e9cf1 (patch) | |
tree | 20e34434b136300cdfb3f99f07c76e6b7b9c726c /src/config | |
parent | 8d99374f1f02a4d229b49f6697247eb1e1f4f940 (diff) | |
download | biboumi-bfcf29451787d10c747ad79cb3fd177ac86e9cf1.tar.gz biboumi-bfcf29451787d10c747ad79cb3fd177ac86e9cf1.tar.bz2 biboumi-bfcf29451787d10c747ad79cb3fd177ac86e9cf1.tar.xz biboumi-bfcf29451787d10c747ad79cb3fd177ac86e9cf1.zip |
Add the persistent_by_default configuration option
fix #3293
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/config.cpp | 8 | ||||
-rw-r--r-- | src/config/config.hpp | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/config/config.cpp b/src/config/config.cpp index 0f3d639..412b170 100644 --- a/src/config/config.cpp +++ b/src/config/config.cpp @@ -23,6 +23,14 @@ std::string Config::get(const std::string& option, const std::string& def) return it->second; } +bool Config::get_bool(const std::string& option, const bool def) +{ + auto res = Config::get(option, ""); + if (res.empty()) + return def; + return res == "true"; +} + int Config::get_int(const std::string& option, const int& def) { std::string res = Config::get(option, ""); diff --git a/src/config/config.hpp b/src/config/config.hpp index 2ba38cc..c5ef15d 100644 --- a/src/config/config.hpp +++ b/src/config/config.hpp @@ -44,6 +44,7 @@ public: * the second argument as the default. */ static int get_int(const std::string&, const int&); + static bool get_bool(const std::string&, const bool); /** * Set a value for the given option. And write all the config * in the file from which it was read if save is true. |