X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNavaids%2Fnavdb.hxx;h=0036a402f93f2db57b71151acb0ba4259248eb23;hb=5ccc83566785c9b5b75e8d03579dbd1aa45d7237;hp=825fa1e621f7b9a3c8360ee8bc45a60bb31cc781;hpb=667e64e1ebc86a0c53112b92b53475898f315c36;p=flightgear.git diff --git a/src/Navaids/navdb.hxx b/src/Navaids/navdb.hxx index 825fa1e62..0036a402f 100644 --- a/src/Navaids/navdb.hxx +++ b/src/Navaids/navdb.hxx @@ -26,33 +26,24 @@ #include -#include - -// #include -// #include -// #include - -#include "navlist.hxx" -#include "fixlist.hxx" - -// using std::map; -// using std::vector; -// using std::string; +#include +// forward decls +class FGTACANList; +class SGPath; +class SGPropertyNode; +class FGRunway; +namespace flightgear +{ + // load and initialize the navigational databases -bool fgNavDBInit( FGAirportList *airports, - FGNavList *navlist, FGNavList *loclist, FGNavList *gslist, - 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, - double threshold ); - +bool navDBInit(const SGPath& path); + +bool loadCarrierNav(const SGPath& path); + +bool loadTacan(const SGPath& path, FGTACANList *channellist); + +} // of namespace flightgear + #endif // _FG_NAVDB_HXX