aboutsummaryrefslogtreecommitdiff
path: root/src/Content.cpp
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2021-09-30 21:12:57 +0200
committerToni Uhlig <matzeton@googlemail.com>2021-09-30 21:12:57 +0200
commit6c04dfe2caff1e03ba5c898b591327439452f616 (patch)
tree11c6f6955de188c48015641c1ae2e63b0d0e50d6 /src/Content.cpp
parentec7cfa85530082127703278cf1ae5167990c0f45 (diff)
CMS functionality works just find..minimal-working-example
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
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);
-}