blob: 3925dec5fe9bf7d56e3de9a75a3a2a78b65e00a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "DocumentNodes.hpp"
#include "Model/Workflow/Evaluation.hpp"
#include "Model/Workflow/Values/BasicValues.hpp"
bool DocumentTemplateExpansionNode::IsInstance(const WorkflowNode* node)
{
return node->GetKind() == KD_DocumentTemplateExpansion;
}
DocumentTemplateExpansionNode::DocumentTemplateExpansionNode()
: WorkflowNode(KD_DocumentTemplateExpansion, false)
{
}
void DocumentTemplateExpansionNode::Evaluate(WorkflowEvaluationContext& ctx)
{
}
|