| 274 | } |
| 275 | |
| 276 | PathMatcher *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 | |
| 291 | PathMatcher *constructFromVectorData( IECore::ConstStringVectorDataPtr paths ) |
| 292 | { |
nothing calls this directly
no test coverage detected