]> git.mxchange.org Git - flightgear.git/blobdiff - src/Instrumentation/vertical_speed_indicator.hxx
Add hud-cycling back - issue #337
[flightgear.git] / src / Instrumentation / vertical_speed_indicator.hxx
index 0c2a5a3a92209ba889a413a60443f50667191893..56b4f0e18366a594f2c9eec5d3cc67798680bf30 100644 (file)
@@ -33,7 +33,6 @@ class VerticalSpeedIndicator : public SGSubsystem
 public:
 
     VerticalSpeedIndicator ( SGPropertyNode *node );
-    VerticalSpeedIndicator ();
     virtual ~VerticalSpeedIndicator ();
 
     virtual void init ();
@@ -43,13 +42,14 @@ private:
 
     double _internal_pressure_inhg;
 
-    string name;
-    int num;
-    string static_port;
+    std::string _name;
+    int _num;
+    std::string _static_pressure;
 
     SGPropertyNode_ptr _serviceable_node;
     SGPropertyNode_ptr _pressure_node;
     SGPropertyNode_ptr _speed_node;
+    SGPropertyNode_ptr _speed_up_node;
     
 };