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