diff options
author | rtk0c <[email protected]> | 2021-04-16 16:49:28 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-04-16 16:49:28 -0700 |
commit | 4e5730e1fcef150ce2f13f52a278890589ca96ad (patch) | |
tree | 0fe4002349047c7c770754e273d6a1d1ed666cbb /core/src/Model/WorkflowSteps.cpp | |
parent | 80d8ae5a6fef6c9a34e81e240539cb655dd99851 (diff) |
More work on workflows
- WorkflowStep -> WorkflowNode
- Added initial kinds of WorkflowNode's
Diffstat (limited to 'core/src/Model/WorkflowSteps.cpp')
-rw-r--r-- | core/src/Model/WorkflowSteps.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/core/src/Model/WorkflowSteps.cpp b/core/src/Model/WorkflowSteps.cpp deleted file mode 100644 index 815c5ca..0000000 --- a/core/src/Model/WorkflowSteps.cpp +++ /dev/null @@ -1,11 +0,0 @@ -#include "WorkflowSteps.hpp" - -NumericOperationStep::NumericOperationStep(NumericOperationStep::Type type) - : mType{ type } { - mInputs.resize(2); - mInputs[0].MatchingType = BaseValue::NumericType; - mInputs[1].MatchingType = BaseValue::NumericType; - - mOutputs.resize(1); - mOutputs[0].MatchingType = BaseValue::NumericType; -} |