MCPcopy Create free account
hub / github.com/BehaviorTree/Groot / connections

Method connections

QtNodeEditor/src/NodeState.cpp:46–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44
45
46NodeState::ConnectionPtrSet
47NodeState::
48connections(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
59void

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected