Implementation of set_date method.
| 18 | |
| 19 | // Implementation of set_date method. |
| 20 | curl::cookie_datetime *curl::cookie_datetime::set_date(const cookie_date &cookieDate) NOEXCEPT { |
| 21 | this->date = cookieDate; |
| 22 | return this; |
| 23 | } |
| 24 | |
| 25 | // Implementation of get_time method. |
| 26 | curl::cookie_time curl::cookie_datetime::get_time() const NOEXCEPT { |