Implementation of constructor with parameters.
| 7 | |
| 8 | // Implementation of constructor with parameters. |
| 9 | curl::cookie_datetime::cookie_datetime(const cookie_time &time, const cookie_date &date) NOEXCEPT { |
| 10 | this->set_time(time)->set_date(date); |
| 11 | } |
| 12 | |
| 13 | // Implementation of set_time method. |
| 14 | curl::cookie_datetime *curl::cookie_datetime::set_time(const cookie_time &cookieTime) NOEXCEPT { |