| 56 | |
| 57 | // Implementation of constructor. |
| 58 | template<class T> curl_sender<T>::curl_sender(curl_easy &easy) : _easy(easy), _sent_bytes(0) { |
| 59 | // ... nothing to do here ... |
| 60 | } |
| 61 | |
| 62 | // Implementation of send method. |
| 63 | template<class T> void curl_sender<T>::send(const T buffer, const size_t size) { |
nothing calls this directly
no outgoing calls
no test coverage detected