| 74 | |
| 75 | // Implementation of abstract method perform. |
| 76 | void curl_easy::perform() { |
| 77 | const CURLcode code = curl_easy_perform(this->curl); |
| 78 | if (code != CURLE_OK) { |
| 79 | throw curl_easy_exception(code,__FUNCTION__); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | // Implementation of escape method. |
| 84 | void curl_easy::escape(string &url) { |