Implementation of constructor with parameters.
| 9 | |
| 10 | // Implementation of constructor with parameters. |
| 11 | curl::cookie_time::cookie_time(const unsigned int hour, const unsigned int minutes, |
| 12 | const unsigned int seconds) { |
| 13 | |
| 14 | this->set_hour(hour)->set_minutes(minutes)->set_seconds(seconds); |
| 15 | } |
| 16 | |
| 17 | // Implementation of set_hour method. |
| 18 | curl::cookie_time *curl::cookie_time::set_hour(unsigned int _hour) NOEXCEPT { |
nothing calls this directly
no test coverage detected