blob: 2a49a915a9f82eab6b8cce90b3918a5878133456 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <Cplt/Model/Workflow/Workflow.hpp>
class DocumentTemplateExpansionNode : public WorkflowNode {
public:
static bool IsInstance(const WorkflowNode* node);
DocumentTemplateExpansionNode();
// TODO
virtual void Evaluate(WorkflowEvaluationContext& ctx) override;
};
|