]> git.mxchange.org Git - flightgear.git/blobdiff - src/Systems/pitot.hxx
Merge branch 'timoore/ptrfix'
[flightgear.git] / src / Systems / pitot.hxx
index b0c39b31cd42cbb4e17ba5773fef5be8fc131a88..9d97dee40a307f561b3938d39a000e82cd20ce21 100644 (file)
@@ -13,8 +13,8 @@
 
 #include <simgear/compiler.h>
 
-#include STL_STRING
-SG_USING_STD(string);
+#include <string>
+using std::string;
 
 #include <simgear/props/props.hxx>
 #include <simgear/structure/subsystem_mgr.hxx>
@@ -43,7 +43,6 @@ class PitotSystem : public SGSubsystem
 public:
 
     PitotSystem ( SGPropertyNode *node );
-    PitotSystem ( int i );
     virtual ~PitotSystem ();
 
     virtual void init ();
@@ -53,8 +52,8 @@ public:
 
 private:
 
-    int num;
-    string name;
+    string _name;
+    int _num;
     SGPropertyNode_ptr _serviceable_node;
     SGPropertyNode_ptr _pressure_node;
     SGPropertyNode_ptr _density_node;