]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/globals.hxx
- implement progress information (enabled by default; can be turned off via
[flightgear.git] / src / Main / globals.hxx
index 3077e750e6bff38150693f5ef8d3287f443be90d..1d81c18b6e47903ef6dd4af68a1ee1b4213648f2 100644 (file)
@@ -2,7 +2,7 @@
 //
 // Written by Curtis Olson, started July 2000.
 //
-// Copyright (C) 2000  Curtis L. Olson - curt@flightgear.org
+// Copyright (C) 2000  Curtis L. Olson - http://www.flightgear.org/~curt
 //
 // This program is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License as
@@ -86,6 +86,7 @@ class FGPanel;
 class FGTileMgr;
 class FGViewMgr;
 class FGViewer;
+class FGRenderer;
 
 
 /**
@@ -97,6 +98,7 @@ class FGGlobals
 
 private:
 
+    FGRenderer *renderer;
     SGSubsystemMgr *subsystem_mgr;
     SGEventMgr *event_mgr;
 
@@ -217,6 +219,8 @@ public:
     FGGlobals();
     virtual ~FGGlobals();
 
+    virtual FGRenderer *get_renderer () const;
+
     virtual SGSubsystemMgr *get_subsystem_mgr () const;
 
     virtual SGSubsystem *get_subsystem (const char * name);