aboutsummaryrefslogtreecommitdiff
path: root/src/Filesystem.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Filesystem.hpp')
-rw-r--r--src/Filesystem.hpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Filesystem.hpp b/src/Filesystem.hpp
new file mode 100644
index 0000000..139c214
--- /dev/null
+++ b/src/Filesystem.hpp
@@ -0,0 +1,25 @@
+#ifndef FILESYSTEM_H
+#define FILESYSTEM_H 1
+
+#include <map>
+#include <string>
+#include <vector>
+
+struct file_data {
+ bool inja_renderable;
+ std::vector<unsigned char> data;
+};
+
+class Filesystem {
+public:
+ Filesystem() {}
+ ~Filesystem() {}
+
+ bool AddSingleFile(std::string path, std::string root);
+ bool Scan(std::string root = "./wwwroot");
+
+private:
+ std::map<std::string, struct file_data> files;
+};
+
+#endif