]> 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 0d9efa730b81bcffe139dae4a540441c783e34b9..09d40197a36a7ec0294562d311a24367898bb6d3 100644 (file)
@@ -41,8 +41,8 @@
 //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
 {
@@ -52,6 +52,7 @@ private:
   FGATCController *controller, *prevController; // The ATC controller that is responsible for the user's aircraft. 
   bool networkVisible;
   bool initSucceeded;
+  SGPropertyNode_ptr trans_num;
 
 public:
   FGATCManager();
@@ -61,4 +62,4 @@ public:
   void update(double time);
 };
   
-#endif // _ATC_MRG_HXX_
\ No newline at end of file
+#endif // _ATC_MRG_HXX_