| 65 | } |
| 66 | |
| 67 | void DynLibManager::unload(DynLib* library) |
| 68 | { |
| 69 | StringDynLibMap::iterator it = mLibsMap.find(library->getName()); |
| 70 | |
| 71 | if (it != mLibsMap.end()) |
| 72 | mLibsMap.erase(it); |
| 73 | |
| 74 | mDelayDynLib.push_back(library); |
| 75 | } |
| 76 | |
| 77 | void DynLibManager::unloadAll() |
| 78 | { |
no test coverage detected