]> git.mxchange.org Git - flightgear.git/blobdiff - src/Cockpit/cockpit.hxx
In the process of changing, adding and removing files the last few years
[flightgear.git] / src / Cockpit / cockpit.hxx
index fce2a0a297824c5ae9bd058970795ae7d22c58bf..b5749201a3c500cd8de43b3c522ad0820f5d3bc5 100644 (file)
@@ -32,7 +32,7 @@
 #endif
 
 
-#include "hud.hxx"
+#include <Aircraft/aircraft.hxx>
 #include "panel.hxx"
 
 // Class fg_Cockpit          This class is a holder for the heads up display
 class fg_Cockpit  {
   private:
     int  Code;
-    int  Status;
+    int  cockpitStatus;
+    SGPropertyNode * hud_status;
 
   public:
-    fg_Cockpit   () : Code(1), Status(0) {};
+    fg_Cockpit   () : Code(1), cockpitStatus(0) {};
     int   code  ( void ) { return Code; }
-    int   status( void ) { return Status; }
+    int   status( void ) { return cockpitStatus; }
 };