aboutsummaryrefslogtreecommitdiff
path: root/src/Content.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Content.cpp')
-rw-r--r--src/Content.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/Content.cpp b/src/Content.cpp
deleted file mode 100644
index b2977bb..0000000
--- a/src/Content.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "Content.hpp"
-
-TemplatedContent::TemplatedContent(std::string filesystemPath) : m_FilesystemPath(filesystemPath)
-{
-}
-
-bool TemplatedContent::Init()
-{
- return false;
-}
-
-void TemplatedContent::Shutdown()
-{
-}
-
-bool TemplatedContent::Render(RequestResponse & rr, std::string & out)
-{
- (void)rr;
-
- out = "tmpl";
-
- return false;
-}
-
-void TemplatedContent::GetRequiredFiles(std::vector<std::string> & requiredFiles) const
-{
- requiredFiles.push_back(m_FilesystemPath);
-}