| 374 | } |
| 375 | |
| 376 | bool PathMatcher::removePath( const std::string &path ) |
| 377 | { |
| 378 | if( path.empty() ) |
| 379 | { |
| 380 | return false; |
| 381 | } |
| 382 | std::vector<IECore::InternedString> tokenizedPath; |
| 383 | StringAlgo::tokenize( path, '/', tokenizedPath ); |
| 384 | return removePath( tokenizedPath ); |
| 385 | } |
| 386 | |
| 387 | bool PathMatcher::removePath( const std::vector<IECore::InternedString> &path ) |
| 388 | { |