From 2fe897e2cf750339a7e466aeafe64f45fb650f10 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 5 Nov 2020 15:50:11 -0500 Subject: Initial commit --- settings.cc | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 settings.cc (limited to 'settings.cc') diff --git a/settings.cc b/settings.cc new file mode 100644 index 0000000..848e22f --- /dev/null +++ b/settings.cc @@ -0,0 +1,23 @@ +#include "libbible.h" +#include + +std::string path = (std::getenv("HOME")) + std::string("/.sword/libbible.conf"); +sword::SWConfig config(path.c_str()); + +void libbible::settingsWrite(std::string key, std::string value) { + config["General"][key.c_str()] = sword::SWBuf(value.c_str()); + config.save(); +} + +std::string libbible::settingsRead(std::string key) { + return config["General"][key.c_str()].c_str(); +} + +void libbible::settingsWriteInt(std::string key, int value) { + config["General"][key.c_str()] = sword::SWBuf(std::to_string(value).c_str()); + config.save(); +} + +int libbible::settingsReadInt(std::string key) { + return atoi(config["General"][key.c_str()].c_str()); +} -- cgit v1.2.3