Implementation of constructor with parameters.
| 10 | |
| 11 | // Implementation of constructor with parameters. |
| 12 | curl::cookie_date::cookie_date(const unsigned int week_day, const unsigned int day, |
| 13 | const unsigned int month, const unsigned int year) NOEXCEPT { |
| 14 | |
| 15 | this->set_week_day(week_day)->set_day(day)->set_month(month)->set_year(year); |
| 16 | } |
| 17 | |
| 18 | // Implementation of set_week_day method. |
| 19 | curl::cookie_date *curl::cookie_date::set_week_day(const unsigned int weekDay) NOEXCEPT { |
nothing calls this directly
no test coverage detected