]> git.mxchange.org Git - flightgear.git/blobdiff - src/Systems/vacuum.hxx
ignore resets for now because every z/Z key press would trigger a call to NOAA. We...
[flightgear.git] / src / Systems / vacuum.hxx
index 197b1d1f4955cb033e5267844790f05bf4a90a97..a18036c77b2ffaa76b30c60a70795d6ec22c1fa8 100644 (file)
@@ -11,8 +11,8 @@
 # error This library requires C++
 #endif
 
-#include <simgear/misc/props.hxx>
-#include <Main/fgfs.hxx>
+#include <simgear/props/props.hxx>
+#include <simgear/structure/subsystem_mgr.hxx>
 
 
 /**
  *
  * Output properties:
  *
- * /systems/vacuum[0]/suction-inhg
+ * /systems/vacuum[n]/suction-inhg
  */
-class VacuumSystem : public FGSubsystem
+class VacuumSystem : public SGSubsystem
 {
 
 public:
 
-    VacuumSystem ();
+    VacuumSystem( int i );
     virtual ~VacuumSystem ();
 
     virtual void init ();
@@ -45,6 +45,7 @@ public:
 
 private:
 
+    int num;
     SGPropertyNode_ptr _serviceable_node;
     SGPropertyNode_ptr _rpm_node;
     SGPropertyNode_ptr _pressure_node;