summaryrefslogtreecommitdiffstats
path: root/include/curl_wrapper.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/curl_wrapper.hpp')
-rw-r--r--include/curl_wrapper.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/curl_wrapper.hpp b/include/curl_wrapper.hpp
index c5e807f..0088197 100644
--- a/include/curl_wrapper.hpp
+++ b/include/curl_wrapper.hpp
@@ -222,7 +222,7 @@ protected:
*
* @since 0.1.0
*/
- void set_proxy(string_view proxy);
+ virtual void set_proxy(string_view proxy);
/*!
* @brief Set OAuth 2.0 Bearer Access Token.
@@ -237,14 +237,14 @@ protected:
*
* @since 0.3.0
*/
- void set_cainfo(string_view path);
+ virtual void set_cainfo(string_view path);
/*!
* @brief Sets the User-Agent.
*
* @since 0.3.0
*/
- void set_useragent(string_view useragent);
+ virtual void set_useragent(string_view useragent);
private:
CURL *_connection;