This constructor allows to specifiy a custom stream and a custom callback pointer.
| 58 | public: |
| 59 | // This constructor allows to specifiy a custom stream and a custom callback pointer. |
| 60 | curl_ios(T *stream, curlcpp_callback_type callback_ptr) : _stream(stream) { |
| 61 | this->set_callback(callback_ptr); |
| 62 | } |
| 63 | |
| 64 | // This method allow to specify a custom callback pointer. |
| 65 | void set_callback(curlcpp_callback_type callback_ptr) { |
nothing calls this directly
no test coverage detected