From af1c4ee4d74ff7afc997372802d851d11daad418 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Fri, 30 Dec 2022 15:07:39 +0100 Subject: Added tests, added sqlite-backed storage (WIP!) --- storage.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 storage.h (limited to 'storage.h') 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 + +#include "config.h" + +class Storage +{ +public: + Storage(const Config& config); + std::string getDocument(); + +private: + const Config& m_config; +}; + -- cgit v1.2.3