Implementation of default constructor.
| 9 | |
| 10 | // Implementation of default constructor. |
| 11 | curl_share::curl_share() : curl_interface() { |
| 12 | initialize_curl_share(); |
| 13 | } |
| 14 | |
| 15 | // Implementation of assignment operator to perform a deep copy. |
| 16 | curl_share &curl_share::operator=(const curl::curl_share &share) { |
nothing calls this directly
no outgoing calls
no test coverage detected