Implementation of constructor.
| 9 | |
| 10 | // Implementation of constructor. |
| 11 | curl::cookie::cookie(const string& name, const string& value, |
| 12 | const cookie_datetime &datetime, const string& path, const string& domain, const bool secure) { |
| 13 | |
| 14 | set_name(name)->set_value(value)->set_path(path)->set_domain(domain)->set_secure(secure)->set_datetime(datetime); |
| 15 | } |
| 16 | |
| 17 | // Implementation of overloaded constructor. |
| 18 | curl::cookie::cookie(const char *name, const char * value, const cookie_datetime &datetime, |
nothing calls this directly
no test coverage detected