| 44 | |
| 45 | |
| 46 | NodeState::ConnectionPtrSet |
| 47 | NodeState:: |
| 48 | connections(PortType portType, PortIndex portIndex) const |
| 49 | { |
| 50 | auto const &connections = getEntries(portType); |
| 51 | if( portIndex < 0 || portIndex >= connections.size() ) |
| 52 | { |
| 53 | return NodeState::ConnectionPtrSet(); |
| 54 | } |
| 55 | return connections[portIndex]; |
| 56 | } |
| 57 | |
| 58 | |
| 59 | void |
nothing calls this directly
no outgoing calls
no test coverage detected