From 51df86b38668f413c078fd96a0b8828dcd8561ef Mon Sep 17 00:00:00 2001 From: Aki Date: Tue, 29 Mar 2022 23:38:02 +0200 Subject: Fixed includes in HttpServletExec --- NetEx/HttpServletExec.h | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'NetEx/HttpServletExec.h') diff --git a/NetEx/HttpServletExec.h b/NetEx/HttpServletExec.h index ed89d1b..8c9fd2b 100644 --- a/NetEx/HttpServletExec.h +++ b/NetEx/HttpServletExec.h @@ -3,26 +3,26 @@ Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors Copyright (c) 1997-2006, Destroyer Studios LLC. - AUTHOR: John DiCamillo + AUTHOR: John DiCamillo - OVERVIEW - ======== - Network Server Pump for HTTP Server + OVERVIEW + ======== + Network Server Pump for HTTP Server */ - #ifndef HttpServletExec_h #define HttpServletExec_h -#include "HttpServer.h" - -// +-------------------------------------------------------------------+ +#include -class HttpServlet; -class HttpSession; +#include "HttpRequest.h" +#include "HttpResponse.h" +#include "HttpServer.h" +#include "HttpServlet.h" +#include "HttpSession.h" +#include "List.h" -// +-------------------------------------------------------------------+ class HttpServletExec : public HttpServer { @@ -53,4 +53,5 @@ protected: bool exec_shutdown; }; + #endif // HttpServletExec_h -- cgit v1.1