Implementation of get_formatted method.
| 49 | |
| 50 | // Implementation of get_formatted method. |
| 51 | std::string curl::cookie_time::get_formatted() const NOEXCEPT { |
| 52 | ostringstream stream; |
| 53 | stream<<this->get_hour()<<":"<<this->get_minutes()<<":"<<this->get_seconds()<<" GMT"; |
| 54 | return stream.str(); |
| 55 | } |
nothing calls this directly
no test coverage detected