aboutsummaryrefslogtreecommitdiff
path: root/core/src/Model/Workflow/Nodes/DocumentNodes.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2021-04-19 14:00:47 -0700
committerrtk0c <[email protected]>2021-04-19 14:00:47 -0700
commit1e09caaa2980fe901453b4b90985967a51157887 (patch)
treedf61974f9a5efa9a6732bd6d7b1ec1e6d1af182a /core/src/Model/Workflow/Nodes/DocumentNodes.hpp
parentb00b306de1140cb7b759ed0f639e8210fd7dffa6 (diff)
Split workflow into multiple files, fix unity build
Diffstat (limited to 'core/src/Model/Workflow/Nodes/DocumentNodes.hpp')
-rw-r--r--core/src/Model/Workflow/Nodes/DocumentNodes.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/core/src/Model/Workflow/Nodes/DocumentNodes.hpp b/core/src/Model/Workflow/Nodes/DocumentNodes.hpp
new file mode 100644
index 0000000..3b775ec
--- /dev/null
+++ b/core/src/Model/Workflow/Nodes/DocumentNodes.hpp
@@ -0,0 +1,12 @@
+#pragma once
+
+#include "Model/Workflow/Workflow.hpp"
+
+class DocumentTemplateExpansionNode : public WorkflowNode {
+public:
+ static bool IsInstance(const WorkflowNode* node);
+ DocumentTemplateExpansionNode();
+
+ // TODO
+ virtual void Evaluate(WorkflowEvaluationContext& ctx) override;
+};