blob: 66d2eae4d9bb7d4805684b70e3b4b761558cab55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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(TransformType, KD_DocumentTemplateExpansion) {
}
void DocumentTemplateExpansionNode::Evaluate(WorkflowEvaluationContext& ctx) {
}
|