| 42 | } |
| 43 | |
| 44 | NodeDataType CanLoadModel::dataType(PortType portType, PortIndex ndx) const |
| 45 | { |
| 46 | if (portMappings.at(portType).size() > static_cast<uint32_t>(ndx)) { |
| 47 | return portMappings.at(portType)[ndx]; |
| 48 | } |
| 49 | |
| 50 | cds_error("No port mapping for ndx: {}", ndx); |
| 51 | return {}; |
| 52 | } |
| 53 | |
| 54 | std::shared_ptr<NodeData> CanLoadModel::outData(PortIndex) |
| 55 | { |
no test coverage detected