| 3750 | } |
| 3751 | |
| 3752 | void CPartFile::AddDownloadingSource(CUpDownClient* client) |
| 3753 | { |
| 3754 | CClientRefList::iterator it = |
| 3755 | std::find(m_downloadingSourcesList.begin(), m_downloadingSourcesList.end(), CCLIENTREF(client, "")); |
| 3756 | if (it == m_downloadingSourcesList.end()) { |
| 3757 | m_downloadingSourcesList.push_back(CCLIENTREF(client, "CPartFile::AddDownloadingSource")); |
| 3758 | } |
| 3759 | } |
| 3760 | |
| 3761 | |
| 3762 | void CPartFile::RemoveDownloadingSource(CUpDownClient* client) |
no test coverage detected