| 3596 | } |
| 3597 | |
| 3598 | void |
| 3599 | AppManager::getReadersForFormat(const std::string& format, |
| 3600 | IOPluginSetForFormat* decoders) const |
| 3601 | { |
| 3602 | // This will perform a case insensitive find |
| 3603 | IOPluginsMap::const_iterator found = _imp->readerPlugins.find(format); |
| 3604 | |
| 3605 | if ( found == _imp->readerPlugins.end() ) { |
| 3606 | return; |
| 3607 | } |
| 3608 | *decoders = found->second; |
| 3609 | } |
| 3610 | |
| 3611 | void |
| 3612 | AppManager::getWritersForFormat(const std::string& format, |
no test coverage detected