Initial commit

This commit is contained in:
2019-06-15 12:00:21 +02:00
commit eda5d9df6b
31 changed files with 1328 additions and 0 deletions

18
src/server/server.hpp Executable file
View File

@@ -0,0 +1,18 @@
#pragma once
#include "connectionoperator.hpp"
#include "listeningsocket.hpp"
class HttpServer
{
private:
ListeningSocket listeningSocket;
ConnectionOperator connectionOperator;
bool isOpen;
public:
void Execute();
HttpServer();
HttpServer(HttpServer & other) = delete;
HttpServer & operator=(HttpServer & other) = delete;
};