summaryrefslogtreecommitdiffhomepage
path: root/storage.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2022-12-30 15:07:39 +0100
committerRoland Reichwein <mail@reichwein.it>2022-12-30 15:07:39 +0100
commitaf1c4ee4d74ff7afc997372802d851d11daad418 (patch)
tree745761113c41ccbe6ea37119b51b609a219882c9 /storage.h
parent3f3d579c6a6f9a1a31278221f85b3194e3b6c5f4 (diff)
Added tests, added sqlite-backed storage (WIP!)
Diffstat (limited to 'storage.h')
-rw-r--r--storage.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/storage.h b/storage.h
new file mode 100644
index 0000000..068fad0
--- /dev/null
+++ b/storage.h
@@ -0,0 +1,16 @@
+#pragma once
+
+#include <string>
+
+#include "config.h"
+
+class Storage
+{
+public:
+ Storage(const Config& config);
+ std::string getDocument();
+
+private:
+ const Config& m_config;
+};
+