]> git.mxchange.org Git - flightgear.git/blobdiff - src/Navaids/navdb.hxx
James Turner: Improved runway management code:
[flightgear.git] / src / Navaids / navdb.hxx
index 355ff55079aaea435753fe0f875e97562fbbfa3b..3c2321221261e57c58f0cb17a797f85493c9a5f4 100644 (file)
@@ -2,7 +2,7 @@
 //
 // Written by Curtis Olson, started May 2004.
 //
-// Copyright (C) 2004  Curtis L. Olson - curt@flightgear.org
+// Copyright (C) 2004  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
@@ -16,7 +16,7 @@
 //
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 //
 // $Id$
 
 
 // #include <map>
 // #include <vector>
-// #include STL_STRING
+// #include <string>
 
 #include "navlist.hxx"
 #include "fixlist.hxx"
 
-// SG_USING_STD(map);
-// SG_USING_STD(vector);
-// SG_USING_STD(string);
+// using std::map;
+// using std::vector;
+// using std::string;
 
 
 // load and initialize the navigational databases
 bool fgNavDBInit( FGAirportList *airports,
                   FGNavList *navlist, FGNavList *loclist, FGNavList *gslist,
-                  FGNavList *dmelist, FGNavList *mkrbeacons );
-
+                  FGNavList *dmelist, FGNavList *mkrbeacons,
+                  FGNavList *tacanlist, FGNavList *carrierlist,
+                  FGTACANList *channellist );
 
 // This routines traverses the localizer list and attempts to match
 // each entry with it's corresponding runway.  When it is successful,
 // it then "moves" the localizer and updates it's heading so it
 // *perfectly* aligns with the runway, but is still the same distance
 // from the runway threshold.
-void fgNavDBAlignLOCwithRunway( FGRunwayList *runways, FGNavList *loclist,
+void fgNavDBAlignLOCwithRunway( FGAirportList *airport, FGNavList *loclist,
                                 double threshold );
 
-
 #endif // _FG_NAVDB_HXX