10Duke Enterprise C++ Client
Loading...
Searching...
No Matches
Win32URLs.h
1#ifndef TENDUKE_NET_WIN_WIN32URLS_H
2#define TENDUKE_NET_WIN_WIN32URLS_H
3
4#include "net/SimpleURLService.h"
5
6#include "./Win32URLDecoder.h"
7#include "./Win32URLEncoder.h"
8#include "./Win32URLParser.h"
9
10namespace tenduke { namespace net { namespace win {
11
14class Win32URLs : public ::tenduke::net::SimpleURLService
15{
16public:
17 Win32URLs()
18 : SimpleURLService(
19 std::make_shared<::tenduke::net::win::Win32URLDecoder>(),
20 std::make_shared<::tenduke::net::win::Win32URLEncoder>(),
21 std::make_shared<::tenduke::net::win::Win32URLParser>()
22 )
23 {
24 }
25};
26
27}}}
28
29#endif //TENDUKE_NET_WIN_WIN32URLS_H
Definition SimpleURLService.h:12
Generic networking support.
Definition AbstractURLCodec.h:6
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4