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