| 15 | std::string NodeType::qualifiedName() const { return module().fullName() + ":" + name(); } |
| 16 | |
| 17 | void NodeType::setDataInputs( |
| 18 | std::vector<chi::NamedDataType, std::allocator<chi::NamedDataType> > newInputs) { |
| 19 | mDataInputs = std::move(newInputs); |
| 20 | } |
| 21 | |
| 22 | void NodeType::setDataOutputs( |
| 23 | std::vector<chi::NamedDataType, std::allocator<chi::NamedDataType> > newOutputs) { |
nothing calls this directly
no outgoing calls
no test coverage detected