1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Update CURL.hpp

This commit is contained in:
Sandu Liviu Catalin 2021-01-28 05:19:19 +02:00
parent 62c9597e92
commit ac162b0c14

View File

@ -20,10 +20,30 @@ struct CpSslOptions : public cpr::SslOptions
*/
CpSslOptions() = default;
/* --------------------------------------------------------------------------------------------
* Copy constructor.
*/
CpSslOptions(const CpSslOptions &) = default;
/* --------------------------------------------------------------------------------------------
* Move constructor.
*/
CpSslOptions(CpSslOptions &&) noexcept = default;
/* --------------------------------------------------------------------------------------------
* Destructor.
*/
virtual ~CpSslOptions() = default;
~CpSslOptions() = default;
/* --------------------------------------------------------------------------------------------
* Copy assignment operator.
*/
CpSslOptions & operator = (const CpSslOptions &) = default;
/* --------------------------------------------------------------------------------------------
* Move assignment operator.
*/
CpSslOptions & operator = (CpSslOptions &&) noexcept = default;
/* --------------------------------------------------------------------------------------------
* Retrieve cpr::SslOptions::cert_file value.