aboutsummaryrefslogtreecommitdiff
path: root/src/content/blog/Blog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/blog/Blog.cpp')
-rw-r--r--src/content/blog/Blog.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/content/blog/Blog.cpp b/src/content/blog/Blog.cpp
new file mode 100644
index 0000000..d79f207
--- /dev/null
+++ b/src/content/blog/Blog.cpp
@@ -0,0 +1,23 @@
+#include "Blog.hpp"
+
+bool Blog::Init(std::string & basePath)
+{
+ (void)basePath;
+
+ return false;
+}
+
+void Blog::Shutdown()
+{
+}
+
+bool Blog::Render()
+{
+ return false;
+}
+
+Redirections const
+Blog::GetRedirections()
+{
+ return Redirections();
+}