MCPcopy Create free account
hub / github.com/MrKepzie/Natron / getPagesOrder

Method getPagesOrder

Engine/Node.cpp:2066–2080  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2064}
2065
2066std::list<std::string>
2067Node::getPagesOrder() const
2068{
2069 const KnobsVec& knobs = getKnobs();
2070 std::list<std::string> ret;
2071
2072 for (KnobsVec::const_iterator it = knobs.begin(); it != knobs.end(); ++it) {
2073 KnobPage* ispage = dynamic_cast<KnobPage*>( it->get() );
2074 if (ispage) {
2075 ret.push_back( ispage->getName() );
2076 }
2077 }
2078
2079 return ret;
2080}
2081
2082void
2083Node::restoreUserKnobs(const NodeSerialization& serialization)

Callers 1

exportAllNodeKnobsFunction · 0.80

Calls 5

getNameMethod · 0.80
beginMethod · 0.45
endMethod · 0.45
getMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected