diff options
Diffstat (limited to 'src/content/blog/Blog.hpp')
-rw-r--r-- | src/content/blog/Blog.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/content/blog/Blog.hpp b/src/content/blog/Blog.hpp index 637ea7b..5e59ec4 100644 --- a/src/content/blog/Blog.hpp +++ b/src/content/blog/Blog.hpp @@ -34,13 +34,13 @@ class Blog : public Content public: explicit Blog(std::string uriBasePath, std::string blogPath, std::string mainTemplatePath); - 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; static bool ValidateAndSetMetdadata(BlogMetadata const & blogMetadata, BlogEntry & blogEntry); bool ValidateEntries(); |