| 20 | } |
| 21 | |
| 22 | void NodeType::setDataOutputs( |
| 23 | std::vector<chi::NamedDataType, std::allocator<chi::NamedDataType> > newOutputs) { |
| 24 | mDataOutputs = std::move(newOutputs); |
| 25 | } |
| 26 | |
| 27 | void NodeType::setExecInputs(std::vector<std::string> newInputs) { |
| 28 | mExecInputs = std::move(newInputs); |
nothing calls this directly
no outgoing calls
no test coverage detected