| 349 | } |
| 350 | |
| 351 | void CExtension::AddPlugin(CPlugin *pPlugin) |
| 352 | { |
| 353 | /* Unfortunately we have to do this :( */ |
| 354 | if (m_Dependents.find(pPlugin) == m_Dependents.end()) |
| 355 | { |
| 356 | m_Dependents.push_back(pPlugin); |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | void CExtension::SetError(const char *error) |
| 361 | { |
no test coverage detected