]> git.mxchange.org Git - flightgear.git/blobdiff - src/Systems/pitot.hxx
This should apply, and everything should build cleanly, in isolation from the
[flightgear.git] / src / Systems / pitot.hxx
index e606fe4e622cd51ff600e4f4ed0ef8929e8fce12..4c4677961e0f55a6989268f91a8958ad51c31de5 100644 (file)
@@ -13,7 +13,7 @@
 
 #include <simgear/compiler.h>
 
-#include STL_STRING
+#include <string>
 SG_USING_STD(string);
 
 #include <simgear/props/props.hxx>
@@ -43,7 +43,6 @@ class PitotSystem : public SGSubsystem
 public:
 
     PitotSystem ( SGPropertyNode *node );
-    PitotSystem ( int i );
     virtual ~PitotSystem ();
 
     virtual void init ();
@@ -53,14 +52,14 @@ public:
 
 private:
 
-    int num;
-    string name;
+    string _name;
+    int _num;
     SGPropertyNode_ptr _serviceable_node;
     SGPropertyNode_ptr _pressure_node;
     SGPropertyNode_ptr _density_node;
     SGPropertyNode_ptr _velocity_node;
+    SGPropertyNode_ptr _slip_angle;
     SGPropertyNode_ptr _total_pressure_node;
-    
 };
 
 #endif // __SYSTEMS_PITOT_HXX