Implementation of default constructor.
| 12 | |
| 13 | // Implementation of default constructor. |
| 14 | curl_info::curl_info() { |
| 15 | this->version = curl_version_info(CURLVERSION_NOW); |
| 16 | } |
| 17 | |
| 18 | // Implementation of overloaded constructor. |
| 19 | curl_info::curl_info(const CURLversion version) { |
nothing calls this directly
no outgoing calls
no test coverage detected