]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/generic.hxx
James Turner:
[flightgear.git] / src / Network / generic.hxx
index f9eaccf363c6d62288b573db5fe6f41d68641064..b2d0df18ef1d34d73c97a6305b6058cbe66a9ded 100644 (file)
 
 #include <simgear/compiler.h>
 
-#include STL_STRING
+#include <string>
 
 #include "protocol.hxx"
 
-SG_USING_STD(string);
+using std::string;
 
 
 class FGGeneric : public FGProtocol {
@@ -63,7 +63,7 @@ protected:
         e_type type;
         double offset;
         double factor;
-        SGPropertyNode *prop;
+        SGPropertyNode_ptr prop;
     } _serial_prot;
 
 private:
@@ -71,6 +71,8 @@ private:
     int length;
     char buf[ FG_MAX_MSG_SIZE ];
 
+    string preamble;
+    string postamble;
     string var_separator;
     string line_separator;
     string var_sep_string;