From 2914a714cebae7f30d47362dfe50c39cb6621163 Mon Sep 17 00:00:00 2001 From: Aki Date: Tue, 12 Mar 2024 00:31:44 +0100 Subject: Removed some connections from Starserver and Game to Types.h This was intended to be wider but DataLoader seems to stop progress once again. This in turn asks for rework of FoundationEx, Readers and Virtual Filesystem. --- Starserver/NetAdminChat.h | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'Starserver/NetAdminChat.h') diff --git a/Starserver/NetAdminChat.h b/Starserver/NetAdminChat.h index 2ce1fba..6295f40 100644 --- a/Starserver/NetAdminChat.h +++ b/Starserver/NetAdminChat.h @@ -8,25 +8,23 @@ OVERVIEW ======== - HTTP Servlet Engine for Multiplayer Admin + HTTP Servlet Engine for Admin Chat */ +#pragma once -#ifndef NetAdminChat_h -#define NetAdminChat_h +#include +#include +#include #include "NetAdminServer.h" -// +-------------------------------------------------------------------+ class NetAdminChat : public NetAdminServlet { public: NetAdminChat(); - virtual ~NetAdminChat() { } - - virtual bool DoGet(HttpRequest& request, HttpResponse& response); - virtual Text GetContent(); + virtual ~NetAdminChat(); + virtual bool DoGet(HttpRequest& request, HttpResponse& response); + virtual Text GetContent(); }; - -#endif // NetAdminChat_h \ No newline at end of file -- cgit v1.1