]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/nmea.hxx
Trivial cleanup commit, to test continuous integration server.
[flightgear.git] / src / Network / nmea.hxx
index 2d0fc32bf7f1ce61c858843b235448328c4d3662..38a266e7e6e7227a1735ca7444d671cc9e05334d 100644 (file)
 
 #include <simgear/compiler.h>
 
-#include STL_STRING
+#include <string>
 
 #include "protocol.hxx"
 
-SG_USING_STD(string);
-
+class FlightProperties;
 
 class FGNMEA : public FGProtocol {
 
     char buf[ FG_MAX_MSG_SIZE ];
     int length;
-
+    FlightProperties* fdm;
 public:
 
     FGNMEA();