X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNavaids%2Fnavdb.hxx;h=c2231423c30da46e621b19f42ef5767836406c9a;hb=6bf47cd248ed388e6a4dd3ffa2d00977b00b62fb;hp=a4aa9be1b77c8ab990a046b0ef74f5540e8f2fdb;hpb=3d4d621a3b3c1b44f5b86d613a0157d003d10176;p=flightgear.git diff --git a/src/Navaids/navdb.hxx b/src/Navaids/navdb.hxx index a4aa9be1b..c2231423c 100644 --- a/src/Navaids/navdb.hxx +++ b/src/Navaids/navdb.hxx @@ -26,16 +26,23 @@ #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 ); - +bool navDBInit(const SGPath& path); + +bool loadCarrierNav(const SGPath& path); + +bool loadTacan(const SGPath& path, FGTACANList *channellist); /** * Return the property node corresponding to the runway ILS installation, @@ -44,10 +51,6 @@ bool fgNavDBInit( FGNavList *navlist, FGNavList *loclist, FGNavList *gslist, */ SGPropertyNode* ilsDataForRunwayAndNavaid(FGRunway* aRunway, const std::string& aNavIdent); -/** - * 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); - +} // of namespace flightgear + #endif // _FG_NAVDB_HXX