Implementation of constructor.
| 15 | { |
| 16 | // Implementation of constructor. |
| 17 | curl_header::curl_header() : size(0), headers(nullptr) |
| 18 | { |
| 19 | // ... nothing to do here ... |
| 20 | } |
| 21 | |
| 22 | // Implementation of the list constructor initialize method. |
| 23 | curl_header::curl_header(initializer_list<string> headers) : size(0), headers(nullptr) |