Implementation of set_minutes method.
| 22 | |
| 23 | // Implementation of set_minutes method. |
| 24 | curl::cookie_time *curl::cookie_time::set_minutes(unsigned int _minutes) NOEXCEPT { |
| 25 | this->minutes = _minutes > 59 ? 0 : _minutes; |
| 26 | return this; |
| 27 | } |
| 28 | |
| 29 | // Implementation of set_seconds method. |
| 30 | curl::cookie_time *curl::cookie_time::set_seconds(unsigned int _seconds) NOEXCEPT { |