]> git.mxchange.org Git - flightgear.git/blobdiff - src/ATC/atc_mgr.hxx
TACAN: fix receiving mobile TACAN.
[flightgear.git] / src / ATC / atc_mgr.hxx
index c34c82446f03eb235a4d50d9c7c997d15199b703..09d40197a36a7ec0294562d311a24367898bb6d3 100644 (file)
 
 #include <ATC/trafficcontrol.hxx>
 #include <ATC/atcdialog.hxx>
+
+#include <AIModel/AIAircraft.hxx>
 //class FGATCController;
 
 
-typedef vector<FGATCController*> AtcVec;
-typedef vector<FGATCController*>::iterator AtcVecIterator;
+typedef std::vector<FGATCController*> AtcVec;
+typedef std::vector<FGATCController*>::iterator AtcVecIterator;
 
 class FGATCManager : public SGSubsystem
 {
 private:
   AtcVec activeStations;
-  //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;
+  SGPropertyNode_ptr trans_num;
 
 public:
   FGATCManager();
@@ -56,4 +62,4 @@ public:
   void update(double time);
 };
   
-#endif // _ATC_MRG_HXX_
\ No newline at end of file
+#endif // _ATC_MRG_HXX_