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

Method getValidatedParameterValue

src/IECore/CompoundParameter.cpp:386–394  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

384}
385
386Object *CompoundParameter::getValidatedParameterValue( const std::string &name )
387{
388 Parameter *p = parameter<Parameter>( name );
389 if( !p )
390 {
391 throw Exception( string("Parameter ") + name + " doesn't exist" );
392 }
393 return p->getValidatedValue();
394}
395
396bool CompoundParameter::parameterPath( const Parameter *child, std::vector<std::string> &path ) const
397{

Callers 1

operator()Method · 0.80

Calls 1

getValidatedValueMethod · 0.80

Tested by 1

operator()Method · 0.64