aboutsummaryrefslogtreecommitdiff
path: root/src/content/static
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/static')
-rw-r--r--src/content/static/Static.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/content/static/Static.hpp b/src/content/static/Static.hpp
index 8d702ec..94cb63b 100644
--- a/src/content/static/Static.hpp
+++ b/src/content/static/Static.hpp
@@ -9,13 +9,13 @@ class Static : public Content
public:
explicit Static(std::string uriBasePath, std::shared_ptr<Filesystem> const & fs);
- 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;
private:
std::string m_UriBasePath;