aboutsummaryrefslogtreecommitdiff
path: root/app/source/Cplt/Model/Workflow/Nodes/DocumentNodes.cpp
blob: 202f8cfaab6df020030ee3d30499e5e9aa3da71e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "DocumentNodes.hpp"

#include <Cplt/Model/Workflow/Evaluation.hpp>
#include <Cplt/Model/Workflow/Values/Basic.hpp>

bool DocumentTemplateExpansionNode::IsInstance(const WorkflowNode* node) {
	return node->GetKind() == KD_DocumentTemplateExpansion;
}

DocumentTemplateExpansionNode::DocumentTemplateExpansionNode()
	: WorkflowNode(KD_DocumentTemplateExpansion, false) {
}

void DocumentTemplateExpansionNode::Evaluate(WorkflowEvaluationContext& ctx) {
}