| 245 | } |
| 246 | |
| 247 | void PluginManager::unsubscribeMessages( const std::string& uniqueComponentId ) { |
| 248 | if ( !mClosing ) { |
| 249 | Lock l( mSubscribedPluginsMutex ); |
| 250 | mSubscribedPlugins.erase( uniqueComponentId ); |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | const PluginManager::OnLoadFileCb& PluginManager::getLoadFileFn() const { |
| 255 | return mLoadFileFn; |
no test coverage detected