From 0e648c7c62944cd81aa57f10ac01cdabe2f2b7e0 Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Sun, 29 Sep 2024 09:28:28 -0500 Subject: Remember various settings. --- src/config.hpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/config.hpp (limited to 'src/config.hpp') 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 + +namespace getsuyomi { + +struct GetsuyomiConfig { + std::string home{}; + std::string dataHome{}; + std::string configHome{}; + std::string stateHome{}; +}; + +} // namespace getsuyomi + + +#endif -- cgit v1.2.3