| 524 | } |
| 525 | |
| 526 | bool |
| 527 | Node::hasAllInputsConnected() const |
| 528 | { |
| 529 | QMutexLocker l(&_imp->inputsMutex); |
| 530 | |
| 531 | for (U32 i = 0; i < _imp->inputs.size(); ++i) { |
| 532 | if ( !_imp->inputs[i].lock() ) { |
| 533 | return false; |
| 534 | } |
| 535 | } |
| 536 | |
| 537 | return true; |
| 538 | } |
| 539 | |
| 540 | bool |
| 541 | Node::hasOutputConnected() const |
no test coverage detected