]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/generic.hxx
--warnings
[flightgear.git] / src / Network / generic.hxx
index f12a3ee29ac09b2e42444814c583b12c406b0033..13b6202941e4d48a2e91cc8fcd1b4e35144ce658 100644 (file)
@@ -2,7 +2,7 @@
 //
 // Written by Curtis Olson, started November 1999.
 //
-// Copyright (C) 1999  Curtis L. Olson - curt@flightgear.org
+// Copyright (C) 1999  Curtis L. Olson - http://www.flightgear.org/~curt
 //
 // This program is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License as
@@ -16,7 +16,7 @@
 //
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 //
 // $Id$
 
@@ -71,8 +71,14 @@ private:
     int length;
     char buf[ FG_MAX_MSG_SIZE ];
 
-    string seperator;
-    vector<_serial_prot> _message;
+    string var_separator;
+    string line_separator;
+    string var_sep_string;
+    string line_sep_string;
+    vector<_serial_prot> _out_message;
+    vector<_serial_prot> _in_message;
+
+    void read_config(SGPropertyNode *root, vector<_serial_prot> &msg);
 
 };