aboutsummaryrefslogtreecommitdiff
path: root/core/src/Model/WorkflowSteps.cpp
blob: 815c5ca52d32f23a456439532cd4035e12e7ff2a (plain)
1
2
3
4
5
6
7
8
9
10
11
#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;
}