10Duke Scale C++ Client
Loading...
Searching...
No Matches
BackendConfiguration.h
1#ifndef TENDUKE_SE_BACKENDCONFIGURATION_H
2#define TENDUKE_SE_BACKENDCONFIGURATION_H
3
4#include <string>
5#include <utility>
6
7namespace tenduke { namespace se {
8
16{
17public:
22 explicit BackendConfiguration(std::string baseUrl)
23 : baseURL(std::move(baseUrl))
24 {}
25
26public:
28 const std::string baseURL;
29};
30
31}}
32
33#endif //TENDUKE_SE_BACKENDCONFIGURATION_H
Configuration for the 10Duke Scale backend to bootstrap the client.
Definition BackendConfiguration.h:16
const std::string baseURL
Base URL of the 10Duke Scale service.
Definition BackendConfiguration.h:28
BackendConfiguration(std::string baseUrl)
Constructs new instance.
Definition BackendConfiguration.h:22
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7