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

Function constructFromObject

src/IECorePython/PathMatcherBinding.cpp:276–289  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

274}
275
276PathMatcher *constructFromObject( boost::python::object oPaths )
277{
278 PathMatcher *result = new PathMatcher;
279 try
280 {
281 initWrapper( *result, oPaths );
282 }
283 catch( ... )
284 {
285 delete result;
286 throw;
287 }
288 return result;
289}
290
291PathMatcher *constructFromVectorData( IECore::ConstStringVectorDataPtr paths )
292{

Callers

nothing calls this directly

Calls 1

initWrapperFunction · 0.85

Tested by

no test coverage detected