| 3609 | } |
| 3610 | |
| 3611 | void |
| 3612 | AppManager::getWritersForFormat(const std::string& format, |
| 3613 | IOPluginSetForFormat* encoders) const |
| 3614 | { |
| 3615 | // This will perform a case insensitive find |
| 3616 | IOPluginsMap::const_iterator found = _imp->writerPlugins.find(format); |
| 3617 | |
| 3618 | if ( found == _imp->writerPlugins.end() ) { |
| 3619 | return; |
| 3620 | } |
| 3621 | *encoders = found->second; |
| 3622 | } |
| 3623 | |
| 3624 | std::string |
| 3625 | AppManager::getReaderPluginIDForFileType(const std::string & extension) const |
no test coverage detected