| 159 | } |
| 160 | |
| 161 | const NodePort* GetOutputPort(int idx) const |
| 162 | { |
| 163 | const NodePort* ptr = GetNodePort(outputs_, idx); |
| 164 | |
| 165 | if(ptr == nullptr) |
| 166 | return nullptr; |
| 167 | |
| 168 | return ptr; |
| 169 | } |
| 170 | |
| 171 | NodePort* GetOutputPort(int idx) |
| 172 | { |
no outgoing calls
no test coverage detected