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

Method removeNode

Engine/NodeGroup.cpp:160–170  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158}
159
160void
161NodeCollection::removeNode(const Node* node)
162{
163 QMutexLocker k(&_imp->nodesMutex);
164 for (NodesList::iterator it =_imp->nodes.begin(); it != _imp->nodes.end();++it) {
165 if ( it->get() == node ) {
166 _imp->nodes.erase(it);
167 break;
168 }
169 }
170}
171
172NodePtr
173NodeCollection::getLastNode(const std::string& pluginID) const

Callers 2

createNodeInternalMethod · 0.45

Calls 4

beginMethod · 0.45
endMethod · 0.45
getMethod · 0.45
eraseMethod · 0.45

Tested by

no test coverage detected