blob: b858b49f7000018e5900639cf898085b15fb1bdd (
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)
{
}
void DocumentTemplateExpansionNode::Evaluate(WorkflowEvaluationContext& ctx)
{
}
|