WebFramework v3.0.12
Web framework for C++.
Loading...
Searching...
No Matches
BaseWebServer.h
1#pragma once
2
3#include "Import/WebFrameworkCore.h"
4
5#include "Utility/JSONSettingsParser.h"
6#include "WebNetwork/Interfaces/IExecutorFunctionality.h"
7
8namespace framework
9{
10 class BaseWebServer : public virtual web::BaseTCPServer
11 {
12 protected:
13 SSL_CTX* context;
14 bool useHTTPS;
15
16 public:
18
19 virtual ~BaseWebServer();
20 };
21}