diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-04-18 15:07:33 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-04-18 15:07:33 +0200 |
commit | 5400eaea898bcf6526d5c18fa8c274ee51081002 (patch) | |
tree | 437d91f177860bcca2f0900bb4018dfc15b35c21 /server.h | |
parent | 39bd177bdb80c24e73f7cf3db4239e55e13eb152 (diff) |
CGI interface
Diffstat (limited to 'server.h')
-rw-r--r-- | server.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,8 +7,6 @@ using namespace std::string_literals; -static const std::string VersionString{ "Webserver "s + std::string{VERSION} }; - // Base class for HTTP and HTTPS classes class Server { @@ -19,6 +17,8 @@ protected: plugins_container_type& m_plugins; public: + static const std::string VersionString; + Server(Config& config, boost::asio::io_context& ioc, const Socket& socket, plugins_container_type& m_plugins); virtual ~Server(); |