Implementation of set_secure method.
| 89 | |
| 90 | // Implementation of set_secure method. |
| 91 | curl::cookie *curl::cookie::set_secure(const bool _secure) NOEXCEPT { |
| 92 | this->secure = _secure; |
| 93 | return this; |
| 94 | } |
| 95 | |
| 96 | // Implementation of set_secure overloaded method. |
| 97 | curl::cookie *curl::cookie::set_secure(const string& _secure) NOEXCEPT { |
no test coverage detected