| 1468 | } |
| 1469 | |
| 1470 | NodePtr |
| 1471 | NodeGroup::getOutputNodeInput(bool useGuiConnexions) const |
| 1472 | { |
| 1473 | NodePtr output = getOutputNode(useGuiConnexions); |
| 1474 | |
| 1475 | if (output) { |
| 1476 | return useGuiConnexions ? output->getGuiInput(0) : output->getInput(0); |
| 1477 | } |
| 1478 | |
| 1479 | return NodePtr(); |
| 1480 | } |
| 1481 | |
| 1482 | NodePtr |
| 1483 | NodeGroup::getRealInputForInput(bool useGuiConnexions, |
no test coverage detected