| 95 | |
| 96 | // Implementation of overloaded add method. |
| 97 | template<typename Iterator> void curl_header::add(Iterator begin, const Iterator end) { |
| 98 | for (; begin != end; ++begin) { |
| 99 | this->add(*begin); |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Re-declaring template curl_pair, in case this is not in include path |
nothing calls this directly
no outgoing calls
no test coverage detected