X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNavaids%2Ffixlist.hxx;h=075f16d027b5296213344a327cf16ad62593ed0f;hb=ad13e4f3b42c53410cb695d2dd0083af77addb2e;hp=dbf0ef2c579f9b0e1ef6c60dedc0ef246d0792b8;hpb=c9813d1b5d79b4aad13c263690a0223086af25ac;p=flightgear.git diff --git a/src/Navaids/fixlist.hxx b/src/Navaids/fixlist.hxx index dbf0ef2c5..075f16d02 100644 --- a/src/Navaids/fixlist.hxx +++ b/src/Navaids/fixlist.hxx @@ -26,52 +26,18 @@ #include -#include -#include -#include -#include STL_STRING - -#include "fix.hxx" - -SG_USING_STD(map); -SG_USING_STD(vector); -SG_USING_STD(string); - -// TODO - fix names may be globally non-unique. Allow for this. -typedef map < string, FGFix > fix_map_type; -typedef fix_map_type::iterator fix_map_iterator; -typedef fix_map_type::const_iterator fix_map_const_iterator; +class FGFix; +class SGPath; class FGFixList { - - fix_map_type fixlist; - public: FGFixList(); ~FGFixList(); // load the navaids and build the map - bool init( SGPath path ); - - // query the database for the specified fix - bool query( const string& ident, FGFix *f ); - - // Find fix of requested type with closest exact or following ident - // (by ACSII values) to that supplied (ie. a lower-bound lookup). - // Supplying true for exact forces only exact matches to be returned (similar to above function) - // Returns NULL if no match found. - const FGFix* findFirstByIdent( const string& ident, bool exact = false ); - - // query the database for the specified fix, lon and lat are - // in degrees, elev is in meters - bool query_and_offset( const string& ident, double lon, double lat, - double elev, FGFix *f, double *heading, - double *dist ); - - // Return a pointer to the master fixlist - inline const fix_map_type* getFixList() { return(&fixlist); } + bool init(const SGPath& path); };