summaryrefslogtreecommitdiffhomepage
path: root/storage.h
diff options
context:
space:
mode:
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;
+};
+