| 78 | } |
| 79 | |
| 80 | void SearchPath::setPaths( const std::string &inPaths, const std::string &separators ) |
| 81 | { |
| 82 | paths.clear(); |
| 83 | boost::tokenizer<boost::char_separator<char> > t( inPaths, char_separator<char>( separators.c_str() ) ); |
| 84 | copy( t.begin(), t.end(), back_insert_iterator<list<path> >( paths ) ); |
| 85 | } |
| 86 | |
| 87 | std::string SearchPath::getPaths( const std::string &separator ) const |
| 88 | { |