10Duke Scale C++ Client
Loading...
Searching...
No Matches
URLDecoder.h
1#ifndef TENDUKE_NET_URLDECODER_H
2#define TENDUKE_NET_URLDECODER_H
3
4#include <cstddef>
5#include <string>
6
7namespace tenduke { namespace net {
8
9
14{
15public:
16 virtual ~URLDecoder() = default;
17
26 virtual std::string decode(const char * string, std::size_t len) const = 0;
27};
28
29
30}}
31
32
33#endif // TENDUKE_NET_URLDECODER_H
Service to URL-decode a string.
Definition URLDecoder.h:14
virtual std::string decode(const char *string, std::size_t len) const =0
URL-decodes given string.
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7