10Duke Scale C++ Client
Loading...
Searching...
No Matches
LibcurlURLEncoder.h
1#ifndef TENDUKE_NET_CURL_LIBCURLURLENCODER_H
2#define TENDUKE_NET_CURL_LIBCURLURLENCODER_H
3
4#include "net/URLEncoder.h"
5
6namespace tenduke { namespace net { namespace curl {
7
8
13{
14public:
15 // tenduke::net::URLEncoder interface
16 std::string encode(const std::string &stringToEncode) const override;
17};
18
19
20}}}
21
22#endif // TENDUKE_NET_CURL_LIBCURLURLENCODER_H
Service to URL-encode a string.
Definition URLEncoder.h:13
Libcurl implementation of tenduke::net::URLEncoder.
Definition LibcurlURLEncoder.h:13
std::string encode(const std::string &stringToEncode) const override
URL-encodes given string.
Definition LibcurlURLEncoder.cpp:11
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7