| 24 | #include <algorithm> |
| 25 | |
| 26 | FTPClientWrapperSSL::FTPClientWrapperSSL(const char * host, int port, const char * user, const char * password) : |
| 27 | FTPClientWrapper(Client_SSL, host, port, user, password), |
| 28 | m_mode(CUT_FTPClient::FTP), |
| 29 | m_ftpListParams(NULL) |
| 30 | { |
| 31 | m_client.setsMode(m_mode); |
| 32 | } |
| 33 | |
| 34 | FTPClientWrapperSSL::~FTPClientWrapperSSL() |
| 35 | { |