| 297 | |
| 298 | |
| 299 | Node* |
| 300 | Connection:: |
| 301 | getNode(PortType portType) const |
| 302 | { |
| 303 | switch (portType) |
| 304 | { |
| 305 | case PortType::In: |
| 306 | return _inNode; |
| 307 | break; |
| 308 | |
| 309 | case PortType::Out: |
| 310 | return _outNode; |
| 311 | break; |
| 312 | |
| 313 | default: |
| 314 | // not possible |
| 315 | break; |
| 316 | } |
| 317 | return nullptr; |
| 318 | } |
| 319 | |
| 320 | |
| 321 | Node*& |
nothing calls this directly
no outgoing calls
no test coverage detected