MCPcopy Create free account
hub / github.com/NatronGitHub/Natron / connectOutput

Method connectOutput

Engine/NodeInputs.cpp:1073–1089  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1071}
1072
1073void
1074Node::connectOutput(bool useGuiValues,
1075 const NodePtr& output)
1076{
1077 assert(output);
1078
1079 {
1080 QMutexLocker l(&_imp->outputsMutex);
1081 if (!useGuiValues) {
1082 _imp->outputs.push_back(output);
1083 _imp->guiOutputs.push_back(output);
1084 } else {
1085 _imp->guiOutputs.push_back(output);
1086 }
1087 }
1088 Q_EMIT outputsChanged();
1089}
1090
1091int
1092Node::disconnectInput(int inputNumber)

Callers 3

connectInputMethod · 0.80
replaceInputInternalMethod · 0.80
activateMethod · 0.80

Calls 1

push_backMethod · 0.45

Tested by

no test coverage detected