10Duke Enterprise C++ SDK
Toggle main menu visibility
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
7
namespace
tenduke
{
namespace
net
{
8
9
13
class
URLDecoder
14
{
15
public
:
16
virtual
~URLDecoder
() =
default
;
17
26
virtual
std::string
decode
(
const
char
*
string
, std::size_t len)
const
= 0;
27
33
virtual
std::string
decode
(
const
char
*
string
)
const
;
34
};
35
36
37
}}
38
39
40
#endif
// TENDUKE_NET_URLDECODER_H
tenduke::net::URLDecoder
Service to URL-decode a string.
Definition
URLDecoder.h:14
tenduke::net::URLDecoder::decode
virtual std::string decode(const char *string, std::size_t len) const =0
URL-decodes given string.
tenduke::net
Generic networking support.
Definition
AbstractURLCodec.h:6
tenduke
Root for classes, functions and globals of 10Duke C++ Client.
Definition
APIRequest.h:4
core
core
src
net
URLDecoder.h
Generated by
1.17.0