]> 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 2572c73f993c4add41d647361c52564b91873600..a18036c77b2ffaa76b30c60a70795d6ec22c1fa8 100644 (file)
@@ -12,8 +12,7 @@
 #endif
 
 #include <simgear/props/props.hxx>
-
-#include <Main/fgfs.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 ();
@@ -46,6 +45,7 @@ public:
 
 private:
 
+    int num;
     SGPropertyNode_ptr _serviceable_node;
     SGPropertyNode_ptr _rpm_node;
     SGPropertyNode_ptr _pressure_node;