blob: 139c214c84e60b780bd5e98bfa17685bc2ba3f54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
|