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.cpp | 28 +++++++++++++++++++--------- src/content/blog/Blog.hpp | 16 ++++++++++++---- 2 files changed, 31 insertions(+), 13 deletions(-) (limited to 'src/content') diff --git a/src/content/blog/Blog.cpp b/src/content/blog/Blog.cpp index d79f207..3f1433d 100644 --- a/src/content/blog/Blog.cpp +++ b/src/content/blog/Blog.cpp @@ -1,23 +1,33 @@ #include "Blog.hpp" -bool Blog::Init(std::string & basePath) +Blog::Blog(std::string basePath) : m_BasePath(basePath), m_Redirections() { - (void)basePath; + m_Redirections.push_back(basePath + "-data"); +} + +bool Blog::Init(void) +{ + return true; +} - return false; +void Blog::Shutdown(void) +{ } -void Blog::Shutdown() +bool Blog::Render(std::string & out) { + out = "blog-bla"; + + return true; } -bool Blog::Render() +std::string const & Blog::GetBasePath(void) const { - return false; + return m_BasePath; } -Redirections const -Blog::GetRedirections() +Redirections const & +Blog::GetRedirections(void) const { - return Redirections(); + return m_Redirections; } 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