aboutsummaryrefslogtreecommitdiff
path: root/src/content/markdown
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/markdown')
-rw-r--r--src/content/markdown/Markdown.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/content/markdown/Markdown.hpp b/src/content/markdown/Markdown.hpp
index dfb6451..04b351c 100644
--- a/src/content/markdown/Markdown.hpp
+++ b/src/content/markdown/Markdown.hpp
@@ -12,13 +12,13 @@ public:
explicit Markdown(std::string uriBasePath, std::string markdownFilesPath, std::string mainTemplatePath = "");
bool Init(std::string const & uriBasePath);
- bool Init();
- void Shutdown();
- bool Render(RequestResponse & rr, RenderData & rd, std::string & out);
+ bool Init() override;
+ void Shutdown() override;
+ bool Render(RequestResponse & rr, RenderData & rd, std::string & out) override;
- std::string & GetUriBasePath();
- std::string const & GetMainTemplate() const;
- Redirections & GetRedirections();
+ std::string & GetUriBasePath() override;
+ std::string const & GetMainTemplate() const override;
+ Redirections & GetRedirections() override;
bool HasMarkdownFile(std::string filePath) const;
bool HasMarkdownURI(std::string uriPath) const;