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

Method set_minutes

src/cookie_time.cpp:24–27  ·  view source on GitHub ↗

Implementation of set_minutes method.

Source from the content-addressed store, hash-verified

22
23// Implementation of set_minutes method.
24curl::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.
30curl::cookie_time *curl::cookie_time::set_seconds(unsigned int _seconds) NOEXCEPT {

Callers 1

cookie_timeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected