1#ifndef TENDUKE_NET_CURL_LIBCURLURLDECODER_H
2#define TENDUKE_NET_CURL_LIBCURLURLDECODER_H
4#include "net/URLDecoder.h"
8namespace tenduke {
namespace net {
namespace curl {
18 std::string
decode(
const char *
string, std::size_t len)
const override;
36 const char *encodedString,
Service to URL-decode a string.
Definition URLDecoder.h:14
Libcurl implementation of tenduke::net::URLDecoder.
Definition LibcurlURLDecoder.h:15
std::string decode(const char *string, std::size_t len) const override
URL-decodes given string.
Definition LibcurlURLDecoder.cpp:36
std::string urlDecode(CURL *curl, const char *encodedString, std::size_t len)
Decodes given string using given CURL-handle.
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4