aboutsummaryrefslogtreecommitdiff
path: root/src/content
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2021-06-20 11:20:47 +0200
committerToni Uhlig <matzeton@googlemail.com>2021-06-20 11:20:47 +0200
commit1967e3465c7e82d84dc8441ba1993a55050766fb (patch)
tree1a8703b9dac00f659a774c7892db528df25f7d22 /src/content
parenta1dbf3f04bde8f98c11f43722e90b20dc832e78c (diff)
Basic blog module.
EventManager, ContentManager Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/content')
-rw-r--r--src/content/blog/Blog.cpp28
-rw-r--r--src/content/blog/Blog.hpp16
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