10Duke Scale C++ Client
Loading...
Searching...
No Matches
osSpecificServices.h
1#ifndef TENDUKE_OSA_OSSPECIFICSERVICES_H
2#define TENDUKE_OSA_OSSPECIFICSERVICES_H
3
4#include "BrowserIntegration.h"
5#include "http/server/HTTPServerFactory.h"
6
7#include <memory>
8
9namespace tenduke { namespace osa {
10
15std::unique_ptr<tenduke::osa::BrowserIntegration> createBrowser();
16
21std::unique_ptr<tenduke::http::server::HTTPServerFactory> createHTTPServerFactory();
22
23}}
24
25#endif //TENDUKE_OSA_OSSPECIFICSERVICES_H
std::unique_ptr< tenduke::http::server::HTTPServerFactory > createHTTPServerFactory()
Creates platform-specific HTTP-server factory.
Definition osSpecificServices.cpp:8
std::unique_ptr< tenduke::osa::BrowserIntegration > createBrowser()
Creates platform-specific browser-integration service.
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7