X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNavaids%2Ffix.hxx;h=d6ee8da17ee83af3d220d22284e7b0b2bf93c0a6;hb=1d4aaa2f0d84a5278689913563ca742c9d291a73;hp=8a4925e086c0b183f889f3fdb99179c3637aa286;hpb=d9bfd5a425df1bad7e3c53a64adce871e299a6b9;p=flightgear.git diff --git a/src/Navaids/fix.hxx b/src/Navaids/fix.hxx index 8a4925e08..d6ee8da17 100644 --- a/src/Navaids/fix.hxx +++ b/src/Navaids/fix.hxx @@ -24,63 +24,21 @@ #ifndef _FG_FIX_HXX #define _FG_FIX_HXX - -#ifdef HAVE_CONFIG_H -# include -#endif - #include -#include - -# include #include -// SG_USING_STD(cout); -// SG_USING_STD(endl); - - -class FGFix { - - std::string ident; - double lon, lat; +#include "positioned.hxx" +class FGFix : public FGPositioned +{ public: + FGFix(const std::string& aIdent, const SGGeod& aPos); + inline ~FGFix(void) {} - inline FGFix(void); - inline ~FGFix(void) {} - - inline const std::string& get_ident() const { return ident; } - inline double get_lon() const { return lon; } - inline double get_lat() const { return lat; } - - friend std::istream& operator>> ( std::istream&, FGFix& ); + inline const std::string& get_ident() const { return ident(); } + inline double get_lon() const { return longitude(); } + inline double get_lat() const { return latitude(); } }; - -inline -FGFix::FGFix() - : ident(""), - lon(0.0), - lat(0.0) -{ -} - - -inline std::istream& -operator >> ( std::istream& in, FGFix& f ) -{ - in >> f.lat; - - if ( f.lat > 95.0 ) { - return in >> skipeol; - } - in >> f.lon >> f.ident; - - // cout << "id = " << f.ident << endl; - - return in >> skipeol; -} - - #endif // _FG_FIX_HXX