Implementation of set_name method.
| 41 | |
| 42 | // Implementation of set_name method. |
| 43 | curl::cookie *curl::cookie::set_value(const string& _value) { |
| 44 | this->value = _value; |
| 45 | return this; |
| 46 | } |
| 47 | |
| 48 | // Implementation of set_value method. |
| 49 | curl::cookie *curl::cookie::set_value(const char *_value) { |