Starshatter_Open
Open source Starshatter engine
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
NetAdminChat.h
Go to the documentation of this file.
1 /* Project Starshatter 4.5
2  Destroyer Studios LLC
3  Copyright © 1997-2004. All Rights Reserved.
4 
5  SUBSYSTEM: Stars.exe
6  FILE: NetAdminChat.h
7  AUTHOR: John DiCamillo
8 
9 
10  OVERVIEW
11  ========
12  HTTP Servlet Engine for Multiplayer Admin
13 */
14 
15 
16 #ifndef NetAdminChat_h
17 #define NetAdminChat_h
18 
19 #include "NetAdminServer.h"
20 
21 // +-------------------------------------------------------------------+
22 
24 {
25 public:
26  NetAdminChat();
27  virtual ~NetAdminChat() { }
28 
29  virtual bool DoGet(HttpRequest& request, HttpResponse& response);
30  virtual Text GetContent();
31 };
32 
33 #endif NetAdminChat_h