aboutsummaryrefslogtreecommitdiff
path: root/src/content/blog/Blog.hpp
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/blog/Blog.hpp
parenta1dbf3f04bde8f98c11f43722e90b20dc832e78c (diff)
Basic blog module.
EventManager, ContentManager Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/content/blog/Blog.hpp')
-rw-r--r--src/content/blog/Blog.hpp16
1 files changed, 12 insertions, 4 deletions
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