X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Fglobals.hxx;h=e241b6297a0630b911ecd03c092aad1380976f6f;hb=38226af24ec01e8f0a20d7fd73ef838a69f6ef25;hp=50bd24e679a5c6a756fc67ff8e01e151fc1fe585;hpb=9b2cea33e8bd9e2739f5ebb2ec6ff1668d7f7b9b;p=flightgear.git diff --git a/src/Main/globals.hxx b/src/Main/globals.hxx index 50bd24e67..e241b6297 100644 --- a/src/Main/globals.hxx +++ b/src/Main/globals.hxx @@ -60,7 +60,6 @@ class FGAircraftModel; class FGControls; class FGFlightPlanDispatcher; class FGNavList; -class FGAirwayNetwork; class FGTACANList; class FGModelMgr; class FGRouteMgr; @@ -105,14 +104,6 @@ private: std::string browser; - // An offset in seconds from the true time. Allows us to adjust - // the effective time of day. - long int warp; - - // How much to change the value of warp each iteration. Allows us - // to make time progress faster than normal (or even run in reverse.) - long int warp_delta; - // Time structure SGTime *time_params; @@ -171,7 +162,6 @@ private: FGNavList *tacanlist; FGNavList *carrierlist; FGTACANList *channellist; - FGAirwayNetwork *airwaynet; /// roots of Aircraft trees string_list fg_aircraft_dirs; @@ -229,13 +219,11 @@ public: inline const std::string &get_browser () const { return browser; } void set_browser (const std::string &b) { browser = b; } - inline long int get_warp() const { return warp; } - inline void set_warp( long int w ) { warp = w; } - inline void inc_warp( long int w ) { warp += w; } + long int get_warp() const; + void set_warp( long int w ); - inline long int get_warp_delta() const { return warp_delta; } - inline void set_warp_delta( long int d ) { warp_delta = d; } - inline void inc_warp_delta( long int d ) { warp_delta += d; } + long int get_warp_delta() const; + void set_warp_delta( long int d ); inline SGTime *get_time_params() const { return time_params; } inline void set_time_params( SGTime *t ) { time_params = t; } @@ -322,10 +310,6 @@ public: inline FGTACANList *get_channellist() const { return channellist; } inline void set_channellist( FGTACANList *c ) { channellist = c; } - inline FGAirwayNetwork *get_airwaynet() const { return airwaynet; } - inline void set_airwaynet( FGAirwayNetwork *a ) { airwaynet = a; } - - /** * Save the current state as the initial state. */