]> git.mxchange.org Git - flightgear.git/blobdiff - src/ATC/atc_mgr.hxx
PerformanceDB improvements.
[flightgear.git] / src / ATC / atc_mgr.hxx
index 5aab9b64cc3cfba00c1e498c7ad5feee6186cfe3..0d9efa730b81bcffe139dae4a540441c783e34b9 100644 (file)
@@ -36,6 +36,8 @@
 
 #include <ATC/trafficcontrol.hxx>
 #include <ATC/atcdialog.hxx>
+
+#include <AIModel/AIAircraft.hxx>
 //class FGATCController;
 
 
@@ -46,8 +48,10 @@ class FGATCManager : public SGSubsystem
 {
 private:
   AtcVec activeStations;
-  FGATCController *controller; // The ATC controller that is responsible for the user's aircraft. 
-  //FGATCDialogNew dialog;  // note that this variable should really replace the ugly global "currentATCDialog();
+  FGAIAircraft ai_ac;
+  FGATCController *controller, *prevController; // The ATC controller that is responsible for the user's aircraft. 
+  bool networkVisible;
+  bool initSucceeded;
 
 public:
   FGATCManager();