Implementation of get method.
| 85 | |
| 86 | // Implementation of get method. |
| 87 | inline const struct curl_slist *curl_header::get() const { |
| 88 | return this->headers; |
| 89 | } |
| 90 | |
| 91 | // Implementation of copy constructor. |
| 92 | inline curl_header::curl_header(const curl_header &header) : size(0), headers(nullptr) { |