MCPcopy Create free account
hub / github.com/ImageEngine/cortex / parameterPath

Function parameterPath

src/IECorePython/CompoundParameterBinding.cpp:153–163  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151}
152
153static boost::python::list parameterPath( CompoundParameter &o, ConstParameterPtr child )
154{
155 std::vector<std::string> p;
156 o.parameterPath( child.get(), p );
157 boost::python::list result;
158 for( std::vector<std::string>::const_iterator it=p.begin(); it!=p.end(); it++ )
159 {
160 result.append( *it );
161 }
162 return result;
163}
164
165} // namespace
166

Callers

nothing calls this directly

Calls 5

parameterPathMethod · 0.80
appendMethod · 0.80
getMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected