]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/globals.hxx
Redo the runway database scheme to use a flat/ascii file and load the entire
[flightgear.git] / src / Main / globals.hxx
index ce3a74ada592bab049fff4352957e0f9a660c482..827debbcabcdc841c9405a7d6aa9c9eb5b242b78 100644 (file)
@@ -60,6 +60,7 @@ class SGTime;
 class SGSoundMgr;
 
 class FGAirportList;
+class FGRunwayList;
 class FGAIMgr;
 class FGATCMgr;
 class FGATCDisplay;
@@ -138,6 +139,9 @@ private:
     // Simple Airport List
     FGAirportList *airports;
 
+    // Runway List
+    FGRunwayList *runways;
+
     // ATC manager
     FGATCMgr *ATC_mgr;
 
@@ -247,6 +251,9 @@ public:
     inline FGAirportList *get_airports() const { return airports; }
     inline void set_airports( FGAirportList *a ) {airports = a; }
 
+    inline FGRunwayList *get_runways() const { return runways; }
+    inline void set_runways( FGRunwayList *r ) {runways = r; }
+
     inline FGATCMgr *get_ATC_mgr() const { return ATC_mgr; }
     inline void set_ATC_mgr( FGATCMgr *a ) {ATC_mgr = a; }