diff options
Diffstat (limited to 'src/content')
-rw-r--r-- | src/content/blog/Blog.cpp | 28 | ||||
-rw-r--r-- | src/content/blog/Blog.hpp | 16 |
2 files changed, 31 insertions, 13 deletions
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 |