Pending white space tweaks I forgot to commit the other day.
This commit is contained in:
parent
886d003688
commit
e32c5d965f
2 changed files with 6 additions and 6 deletions
|
@ -71,7 +71,7 @@ FGGlobals::FGGlobals() :
|
||||||
acmodel( NULL ),
|
acmodel( NULL ),
|
||||||
model_mgr( NULL ),
|
model_mgr( NULL ),
|
||||||
channel_options_list( NULL ),
|
channel_options_list( NULL ),
|
||||||
initial_waypoints(0),
|
initial_waypoints( NULL ),
|
||||||
scenery( NULL ),
|
scenery( NULL ),
|
||||||
tile_mgr( NULL ),
|
tile_mgr( NULL ),
|
||||||
io( new FGIO ),
|
io( new FGIO ),
|
||||||
|
|
|
@ -97,8 +97,8 @@ class FGGlobals
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
SGSubsystemMgr * subsystem_mgr;
|
SGSubsystemMgr *subsystem_mgr;
|
||||||
SGEventMgr * event_mgr;
|
SGEventMgr *event_mgr;
|
||||||
|
|
||||||
// Number of milliseconds elapsed since the start of the program.
|
// Number of milliseconds elapsed since the start of the program.
|
||||||
double sim_time_sec;
|
double sim_time_sec;
|
||||||
|
@ -217,9 +217,9 @@ public:
|
||||||
FGGlobals();
|
FGGlobals();
|
||||||
virtual ~FGGlobals();
|
virtual ~FGGlobals();
|
||||||
|
|
||||||
virtual SGSubsystemMgr * get_subsystem_mgr () const;
|
virtual SGSubsystemMgr *get_subsystem_mgr () const;
|
||||||
|
|
||||||
virtual SGSubsystem * get_subsystem (const char * name);
|
virtual SGSubsystem *get_subsystem (const char * name);
|
||||||
|
|
||||||
virtual void add_subsystem (const char * name,
|
virtual void add_subsystem (const char * name,
|
||||||
SGSubsystem * subsystem,
|
SGSubsystem * subsystem,
|
||||||
|
@ -227,7 +227,7 @@ public:
|
||||||
type = SGSubsystemMgr::GENERAL,
|
type = SGSubsystemMgr::GENERAL,
|
||||||
double min_time_sec = 0);
|
double min_time_sec = 0);
|
||||||
|
|
||||||
virtual SGEventMgr * get_event_mgr () const;
|
virtual SGEventMgr *get_event_mgr () const;
|
||||||
|
|
||||||
inline double get_sim_time_sec () const { return sim_time_sec; }
|
inline double get_sim_time_sec () const { return sim_time_sec; }
|
||||||
inline void inc_sim_time_sec (double dt) { sim_time_sec += dt; }
|
inline void inc_sim_time_sec (double dt) { sim_time_sec += dt; }
|
||||||
|
|
Loading…
Reference in a new issue