summaryrefslogtreecommitdiff
path: root/src/content/blog/Blog.hpp
blob: c903a22477917425f3a20f80e3be0a60fd5b0065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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