X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNavaids%2Fnavdb.hxx;h=0036a402f93f2db57b71151acb0ba4259248eb23;hb=5ccc83566785c9b5b75e8d03579dbd1aa45d7237;hp=5c2aa117ce252120bb2a4208df3d14de07090a8a;hpb=0c5e9f46e79bb7ed991aa1fda5c382308353824e;p=flightgear.git diff --git a/src/Navaids/navdb.hxx b/src/Navaids/navdb.hxx index 5c2aa117c..0036a402f 100644 --- a/src/Navaids/navdb.hxx +++ b/src/Navaids/navdb.hxx @@ -26,21 +26,24 @@ #include +#include -class FGNavList; +// forward decls class FGTACANList; +class SGPath; +class SGPropertyNode; +class FGRunway; +namespace flightgear +{ + // load and initialize the navigational databases -bool fgNavDBInit( FGNavList *navlist, FGNavList *loclist, FGNavList *gslist, - FGNavList *dmelist, - FGNavList *tacanlist, FGNavList *carrierlist, - FGTACANList *channellist ); - - -/** - * Helper to map a nav.data name (eg 'KBWI 33R GS') into a FGRunway reference. - * returns NULL, and complains loudly, if the airport/runway is not found. - */ -FGRunway* getRunwayFromName(const std::string& aName); - +bool navDBInit(const SGPath& path); + +bool loadCarrierNav(const SGPath& path); + +bool loadTacan(const SGPath& path, FGTACANList *channellist); + +} // of namespace flightgear + #endif // _FG_NAVDB_HXX