diff options
author | Roland Reichwein <mail@reichwein.it> | 2022-12-30 15:07:39 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2022-12-30 15:07:39 +0100 |
commit | af1c4ee4d74ff7afc997372802d851d11daad418 (patch) | |
tree | 745761113c41ccbe6ea37119b51b609a219882c9 /storage.h | |
parent | 3f3d579c6a6f9a1a31278221f85b3194e3b6c5f4 (diff) |
Added tests, added sqlite-backed storage (WIP!)
Diffstat (limited to 'storage.h')
-rw-r--r-- | storage.h | 16 |
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; +}; + |