diff options
Diffstat (limited to 'src/content/blog/Blog.hpp')
-rw-r--r-- | src/content/blog/Blog.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/content/blog/Blog.hpp b/src/content/blog/Blog.hpp new file mode 100644 index 0000000..c903a22 --- /dev/null +++ b/src/content/blog/Blog.hpp @@ -0,0 +1,15 @@ +#ifndef BLOG_H +#define BLOG_H 1 + +#include "../../Content.hpp" + +class Blog : public Content +{ +public: + bool Init(std::string & basePath); + void Shutdown(); + bool Render(); + Redirections const GetRedirections(); +}; + +#endif |