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:
parent
62c9597e92
commit
ac162b0c14
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user