curl-cpp
static c++17 wrapper for curl with -fno-exceptions support
|
1 #ifndef __curl_cpp_curl_url_HPP__
2 # define __curl_cpp_curl_url_HPP__
26 static void check_url(
int code);
53 auto set_url(
const char *url_arg)
noexcept -> Ret_except<
set_code, std::bad_alloc>;
66 auto set_query(
const char *query)
noexcept -> Ret_except<
set_code, std::bad_alloc>;
72 void operator () (
char *p)
const noexcept;
97 auto get_url()
const noexcept -> Ret_except<string,
get_code, std::bad_alloc>;
99 auto get_scheme()
const noexcept -> Ret_except<string,
get_code, std::bad_alloc>;
100 auto get_options()
const noexcept -> Ret_except<string,
get_code, std::bad_alloc>;
101 auto get_query()
const noexcept -> Ret_except<string,
get_code, std::bad_alloc>;
auto set_url(const char *url_arg) noexcept -> Ret_except< set_code, std::bad_alloc >
auto set_options(const char *options) noexcept -> Ret_except< set_code, std::bad_alloc >
auto set_query(const char *query) noexcept -> Ret_except< set_code, std::bad_alloc >
auto set_scheme(const char *scheme) noexcept -> Ret_except< set_code, std::bad_alloc >
auto get_url() const noexcept -> Ret_except< string, get_code, std::bad_alloc >