Implelementation of set_domain method.
| 73 | |
| 74 | // Implelementation of set_domain method. |
| 75 | curl::cookie *curl::cookie::set_domain(const string& _domain) NOEXCEPT { |
| 76 | this->domain = _domain; |
| 77 | return this; |
| 78 | } |
| 79 | |
| 80 | // Implementation of set_domain overloaded method. |
| 81 | curl::cookie *curl::cookie::set_domain(const char *_domain) NOEXCEPT { |