10Duke Enterprise C++ Client
Loading...
Searching...
No Matches
AbstractURLs.h
1#ifndef TENDUKE_NET_ABSTRACTURLS_H
2#define TENDUKE_NET_ABSTRACTURLS_H
3
4#include "./AbstractURLCodec.h"
5#include "./URLs.h"
6
7namespace tenduke { namespace net {
8
13{
14 // ::tenduke::net::URLs implementation
15public:
16 ::tenduke::net::URLBuilder newURL() const override;
17 ::tenduke::net::URLBuilder newURL(const ::tenduke::net::URL &url) const override;
18 ::tenduke::net::URLBuilder newURL(const std::string &url) const override;
19};
20
21}}
22
23#endif //TENDUKE_NET_ABSTRACTURLS_H
Base implementation of tenduke::net::URLCodec which provides base functionality and can be subclassed...
Definition AbstractURLCodec.h:12
Abstract base implementation of tenduke::net::URLs.
Definition AbstractURLs.h:13
::tenduke::net::URLBuilder newURL() const override
Starts building a new URL.
Definition AbstractURLs.cpp:9
Very simple URL-builder.
Definition URLBuilder.h:23
URL-related functionality.
Definition URLs.h:14
Generic networking support.
Definition AbstractURLCodec.h:6
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4