Detach an observer from the client.
| 347 | |
| 348 | /// Detach an observer from the client. |
| 349 | void CFTPClient::DetachObserver(CFTPClient::CNotification* pObserver) |
| 350 | { |
| 351 | ASSERT( pObserver ); |
| 352 | if( pObserver ) |
| 353 | m_setObserver.Detach(pObserver); |
| 354 | } |
| 355 | |
| 356 | /// Sets the file list parser which is used for parsing the results of the LIST command. |
| 357 | void CFTPClient::SetFileListParser(std::unique_ptr<IFileListParser> apFileListParser) |
no test coverage detected