X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FATC%2Fatc_mgr.hxx;h=09d40197a36a7ec0294562d311a24367898bb6d3;hb=e34d97796c74263558002040f2eedc2cce204a40;hp=277ad4d9b2bdf8557d671fb2ee93649cf11e77ec;hpb=ed434d9967b0b23e4abb172d699ef956246f4bf9;p=flightgear.git diff --git a/src/ATC/atc_mgr.hxx b/src/ATC/atc_mgr.hxx index 277ad4d9b..09d40197a 100644 --- a/src/ATC/atc_mgr.hxx +++ b/src/ATC/atc_mgr.hxx @@ -41,8 +41,8 @@ //class FGATCController; -typedef vector AtcVec; -typedef vector::iterator AtcVecIterator; +typedef std::vector AtcVec; +typedef std::vector::iterator AtcVecIterator; class FGATCManager : public SGSubsystem { @@ -50,8 +50,9 @@ private: AtcVec activeStations; FGAIAircraft ai_ac; FGATCController *controller, *prevController; // The ATC controller that is responsible for the user's aircraft. - //FGATCDialogNew dialog; // note that this variable should really replace the ugly global "currentATCDialog(); bool networkVisible; + bool initSucceeded; + SGPropertyNode_ptr trans_num; public: FGATCManager(); @@ -59,7 +60,6 @@ public: void init(); void addController(FGATCController *controller); void update(double time); - FGATCDialogNew * getATCDialog() { return currentATCDialog; }; }; -#endif // _ATC_MRG_HXX_ \ No newline at end of file +#endif // _ATC_MRG_HXX_