summaryrefslogtreecommitdiffhomepage
path: root/NetEx/HttpServletExec.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-03-29 23:38:02 +0200
committerAki <please@ignore.pl>2022-03-29 23:38:02 +0200
commit51df86b38668f413c078fd96a0b8828dcd8561ef (patch)
tree8039516e2b45b5354089b3b16f5087c226937291 /NetEx/HttpServletExec.h
parent27ffda3b67d172afca2cb85387fad27e78719480 (diff)
downloadstarshatter-51df86b38668f413c078fd96a0b8828dcd8561ef.zip
starshatter-51df86b38668f413c078fd96a0b8828dcd8561ef.tar.gz
starshatter-51df86b38668f413c078fd96a0b8828dcd8561ef.tar.bz2
Fixed includes in HttpServletExec
Diffstat (limited to 'NetEx/HttpServletExec.h')
-rw-r--r--NetEx/HttpServletExec.h23
1 files changed, 12 insertions, 11 deletions
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 <windows.h>
-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