| 44 | |
| 45 | |
| 46 | void |
| 47 | PlugInManager::unload( const std::string &libraryFileName ) |
| 48 | { |
| 49 | for ( PlugIns::iterator it = m_plugIns.begin(); it != m_plugIns.end(); ++it ) |
| 50 | { |
| 51 | if ( (*it).m_fileName == libraryFileName ) |
| 52 | { |
| 53 | unload( *it ); |
| 54 | m_plugIns.erase( it ); |
| 55 | break; |
| 56 | } |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | |
| 61 | void |
nothing calls this directly
no test coverage detected