]> git.mxchange.org Git - flightgear.git/blob - src/Server/message.cxx
Multiplayer client/server system -- MessageBuf class and test harness complete
[flightgear.git] / src / Server / message.cxx
1 // message.hxx -- Multiplayer Client/Server message base class\r
2 //\r
3 // Written by John Barrett, started November 2003.\r
4 //\r
5 // Copyright (C) 2003  John R. Barrett - jbarrett@accesshosting.com\r
6 //\r
7 // This program is free software; you can redistribute it and/or\r
8 // modify it under the terms of the GNU General Public License as\r
9 // published by the Free Software Foundation; either version 2 of the\r
10 // License, or (at your option) any later version.\r
11 //\r
12 // This program is distributed in the hope that it will be useful, but\r
13 // WITHOUT ANY WARRANTY; without even the implied warranty of\r
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
15 // General Public License for more details.\r
16 //\r
17 // You should have received a copy of the GNU General Public License\r
18 // along with this program; if not, write to the Free Software\r
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\r
20 //\r
21 \r
22 \r
23 #include "message.hxx"\r
24 \r
25 FGMPSMessage::FGMPSMessage() \r
26 {\r
27         msgid = 0x0000;\r
28         elements[0].type = fgmps_null;\r
29         elements[0].data = NULL;        \r
30         \r
31 }\r
32 \r
33 \r
34 \r