aboutsummaryrefslogtreecommitdiff
path: root/app/source/Cplt/Model/Workflow/Nodes/DocumentNodes.cpp
blob: df4a8bb215bf8116a27582a4e84b915563a26173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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)
{
}