| 3304 | } |
| 3305 | |
| 3306 | void |
| 3307 | AppManager::getReadersForFormat(const std::string& format, |
| 3308 | IOPluginSetForFormat* decoders) const |
| 3309 | { |
| 3310 | // This will perform a case insensitive find |
| 3311 | IOPluginsMap::const_iterator found = _imp->readerPlugins.find(format); |
| 3312 | |
| 3313 | if ( found == _imp->readerPlugins.end() ) { |
| 3314 | return; |
| 3315 | } |
| 3316 | *decoders = found->second; |
| 3317 | } |
| 3318 | |
| 3319 | void |
| 3320 | AppManager::getWritersForFormat(const std::string& format, |
no test coverage detected