summaryrefslogtreecommitdiff
path: root/src/config.hpp
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2024-09-29 09:28:28 -0500
committerDominick Allen <djallen@librehumanitas.org>2024-09-29 09:28:28 -0500
commit0e648c7c62944cd81aa57f10ac01cdabe2f2b7e0 (patch)
treea2a0912e33e7a18f6c9e32e5e4b5fb0a4ba622bc /src/config.hpp
parentfa4b4097d3283e1d6e6376c70910e245f0b1f6ec (diff)
Remember various settings.
Diffstat (limited to 'src/config.hpp')
-rw-r--r--src/config.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/config.hpp b/src/config.hpp
new file mode 100644
index 0000000..cb6a74a
--- /dev/null
+++ b/src/config.hpp
@@ -0,0 +1,18 @@
+#ifndef GETSUYOMI_CONFIG_HPP
+#define GETSUYOMI_CONFIG_HPP
+
+#include <string>
+
+namespace getsuyomi {
+
+struct GetsuyomiConfig {
+ std::string home{};
+ std::string dataHome{};
+ std::string configHome{};
+ std::string stateHome{};
+};
+
+} // namespace getsuyomi
+
+
+#endif