blob: 85ffd8c7c2d414639aaf190480b1d74417134fcf (
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
26
27
28
29
|
#ifndef STATIC_H
#define STATIC_H 1
#include "../../Content.hpp"
#include "../../Filesystem.hpp"
#include "../markdown/Markdown.hpp"
class Static : public Content
{
public:
explicit Static(std::string uriBasePath, std::string staticFilesPath);
bool Init();
void Shutdown();
bool Render(RequestResponse & rr, RenderData & rd, std::string & out);
std::string const & GetUriBasePath() const;
std::string const & GetMainTemplate() const;
Redirections const & GetRedirections() const;
private:
std::string m_UriBasePath;
std::string m_MainTemplatePath;
std::string m_StaticFilesPath;
Redirections m_Redirections;
Filesystem m_StaticFiles;
};
#endif
|