aboutsummaryrefslogtreecommitdiff
path: root/src/Content.cpp
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2021-06-20 16:49:10 +0200
committerToni Uhlig <matzeton@googlemail.com>2021-06-20 16:49:10 +0200
commit93d69841064fd5c3156d989caf7ddec46bfb8685 (patch)
tree71dc8675e27c2ac4608114efbbb3e8b81430587d /src/Content.cpp
parent1967e3465c7e82d84dc8441ba1993a55050766fb (diff)
Inja/Template stuff
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/Content.cpp')
-rw-r--r--src/Content.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Content.cpp b/src/Content.cpp
index e302a78..36138a7 100644
--- a/src/Content.cpp
+++ b/src/Content.cpp
@@ -1 +1,26 @@
#include "Content.hpp"
+
+TemplatedContent::TemplatedContent(std::string filesystemPath) : m_FilesystemPath(filesystemPath)
+{
+}
+
+bool TemplatedContent::Init()
+{
+ return false;
+}
+
+void TemplatedContent::Shutdown()
+{
+}
+
+bool TemplatedContent::Render(std::string & out)
+{
+ out = "tmpl";
+
+ return false;
+}
+
+void TemplatedContent::SetTemplateData(nlohmann::json & data)
+{
+ m_TemplateData = data;
+}