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

Method getTable

Engine/PyParameter.cpp:2319–2334  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2317}
2318
2319void
2320PathParam::getTable(std::list<std::vector<std::string> >* table) const
2321{
2322 KnobPathPtr k = _sKnob.lock();
2323 if (!k) {
2324 return;
2325 }
2326 if (!k->isMultiPath()) {
2327 return;
2328 }
2329 try {
2330 k->getTable(table);
2331 } catch (const std::exception& /*e*/) {
2332 return;
2333 }
2334}
2335
2336
2337////////////////////ButtonParam

Callers

nothing calls this directly

Calls 2

isMultiPathMethod · 0.80
lockMethod · 0.45

Tested by

no test coverage detected