aboutsummaryrefslogtreecommitdiff
path: root/src/content/blog/Blog.hpp
diff options
context:
space:
mode:
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