From 55d58a16e2511741cc625e203205dec86144faf3 Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 18 Feb 2022 20:35:38 -0500 Subject: Reorganized repository layout --- settings.cc | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 settings.cc (limited to 'settings.cc') diff --git a/settings.cc b/settings.cc deleted file mode 100644 index 848e22f..0000000 --- a/settings.cc +++ /dev/null @@ -1,23 +0,0 @@ -#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