From 8898ad9b25fca6afe2374d293a981db02a83d7e9 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Thu, 31 May 2012 14:46:27 +0000 Subject: Committing the documentation to svn to have it accessible online --- Doc/doxygen/html/_net_chat_8h_source.html | 169 ++++++++++++++++++++++++++++++ 1 file changed, 169 insertions(+) create mode 100644 Doc/doxygen/html/_net_chat_8h_source.html (limited to 'Doc/doxygen/html/_net_chat_8h_source.html') diff --git a/Doc/doxygen/html/_net_chat_8h_source.html b/Doc/doxygen/html/_net_chat_8h_source.html new file mode 100644 index 0000000..7a90a9a --- /dev/null +++ b/Doc/doxygen/html/_net_chat_8h_source.html @@ -0,0 +1,169 @@ + + + + + +Starshatter_Open: D:/SRC/StarshatterSVN/Stars45/NetChat.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
Starshatter_Open +
+
Open source Starshatter engine
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
NetChat.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: NetChat.h
+
7  AUTHOR: John DiCamillo
+
8 
+
9 
+
10  OVERVIEW
+
11  ========
+
12  Single chat message and sender
+
13 */
+
14 
+
15 
+
16 #ifndef NetChat_h
+
17 #define NetChat_h
+
18 
+
19 #include "Types.h"
+
20 #include "NetUser.h"
+
21 
+
22 // +-------------------------------------------------------------------+
+
23 
+ +
25 {
+
26 public:
+
27  static const char* TYPENAME() { return "NetChatEntry"; }
+
28 
+
29  NetChatEntry(const NetUser* user, const char* msg);
+
30  NetChatEntry(int id, const char* user, const char* msg);
+
31  ~NetChatEntry();
+
32 
+
33  int operator == (const NetChatEntry& c) const { return id == c.id; }
+
34  int operator < (const NetChatEntry& c) const { return id < c.id; }
+
35 
+
36  int GetID() const { return id; }
+
37  const Text& GetUser() const { return user; }
+
38  Color GetColor() const { return color; }
+
39  const Text& GetMessage() const { return msg; }
+
40  DWORD GetTime() const { return time; }
+
41 
+
42 private:
+
43  int id;
+
44  Text user;
+
45  Text msg;
+
46  Color color;
+
47  DWORD time;
+
48 };
+
49 
+
50 // +-------------------------------------------------------------------+
+
51 
+
52 #endif NetChat_h
+
+
+ + + + -- cgit v1.1