From 1967e3465c7e82d84dc8441ba1993a55050766fb Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Sun, 20 Jun 2021 11:20:47 +0200 Subject: Basic blog module. EventManager, ContentManager Signed-off-by: Toni Uhlig --- src/content/blog/Blog.hpp | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'src/content/blog/Blog.hpp') diff --git a/src/content/blog/Blog.hpp b/src/content/blog/Blog.hpp index c903a22..316ce92 100644 --- a/src/content/blog/Blog.hpp +++ b/src/content/blog/Blog.hpp @@ -6,10 +6,18 @@ class Blog : public Content { public: - bool Init(std::string & basePath); - void Shutdown(); - bool Render(); - Redirections const GetRedirections(); + explicit Blog(std::string basePath); + + bool Init(void); + void Shutdown(void); + bool Render(std::string & out); + + std::string const & GetBasePath() const; + Redirections const & GetRedirections() const; + +private: + std::string m_BasePath; + Redirections m_Redirections; }; #endif -- cgit v1.2.3