| 3317 | } |
| 3318 | |
| 3319 | void |
| 3320 | AppManager::getWritersForFormat(const std::string& format, |
| 3321 | IOPluginSetForFormat* encoders) const |
| 3322 | { |
| 3323 | // This will perform a case insensitive find |
| 3324 | IOPluginsMap::const_iterator found = _imp->writerPlugins.find(format); |
| 3325 | |
| 3326 | if ( found == _imp->writerPlugins.end() ) { |
| 3327 | return; |
| 3328 | } |
| 3329 | *encoders = found->second; |
| 3330 | } |
| 3331 | |
| 3332 | std::string |
| 3333 | AppManager::getReaderPluginIDForFileType(const std::string & extension) const |
no test coverage detected