MCPcopy Create free account
hub / github.com/JosephP91/curlcpp / cookie_date

Method cookie_date

src/cookie_date.cpp:12–16  ·  view source on GitHub ↗

Implementation of constructor with parameters.

Source from the content-addressed store, hash-verified

10
11// Implementation of constructor with parameters.
12curl::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.
19curl::cookie_date *curl::cookie_date::set_week_day(const unsigned int weekDay) NOEXCEPT {

Callers

nothing calls this directly

Calls 4

set_week_dayMethod · 0.95
set_yearMethod · 0.80
set_monthMethod · 0.80
set_dayMethod · 0.80

Tested by

no test coverage detected