| 2926 | } |
| 2927 | |
| 2928 | std::list<std::string> |
| 2929 | AppManager::getPluginIDs() const |
| 2930 | { |
| 2931 | std::list<std::string> ret; |
| 2932 | |
| 2933 | for (PluginsMap::const_iterator it = _imp->_plugins.begin(); it != _imp->_plugins.end(); ++it) { |
| 2934 | assert( !it->second.empty() ); |
| 2935 | ret.push_back(it->first); |
| 2936 | } |
| 2937 | |
| 2938 | return ret; |
| 2939 | } |
| 2940 | |
| 2941 | std::list<std::string> |
| 2942 | AppManager::getPluginIDs(const std::string& filter) |
no test coverage detected