X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNavaids%2Ffix.hxx;h=a5f8f891db79fbe8b7bb1a3705b2b58930ba7b6f;hb=4a79d82ba62fa4e5be759fa0fc4b20220e8da303;hp=3804fb4b286ce02c246c6e34f15bd5731eb72581;hpb=a0d50000ba0aef47f52bedbd7e335501c291bb9b;p=flightgear.git diff --git a/src/Navaids/fix.hxx b/src/Navaids/fix.hxx index 3804fb4b2..a5f8f891d 100644 --- a/src/Navaids/fix.hxx +++ b/src/Navaids/fix.hxx @@ -2,7 +2,7 @@ // // Written by Curtis Olson, started April 2000. // -// Copyright (C) 2000 Curtis L. Olson - curt@flightgear.org +// Copyright (C) 2000 Curtis L. Olson - http://www.flightgear.org/~curt // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as @@ -16,7 +16,7 @@ // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software -// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // // $Id$ @@ -34,21 +34,20 @@ #ifdef SG_HAVE_STD_INCLUDES # include -#elif defined( SG_HAVE_NATIVE_SGI_COMPILERS ) -# include -#elif defined( __BORLANDC__ ) +#elif defined( __BORLANDC__ ) || (__APPLE__) # include #else # include #endif -#if ! defined( SG_HAVE_NATIVE_SGI_COMPILERS ) SG_USING_STD(istream); -#endif #include STL_STRING SG_USING_STD(string); +// SG_USING_STD(cout); +// SG_USING_STD(endl); + class FGFix { @@ -57,10 +56,10 @@ class FGFix { public: - inline FGFix(void) {} + inline FGFix(void); inline ~FGFix(void) {} - inline string get_ident() const { return ident; } + inline const string& get_ident() const { return ident; } inline double get_lon() const { return lon; } inline double get_lat() const { return lat; } @@ -68,15 +67,28 @@ public: }; +inline +FGFix::FGFix() + : ident(""), + lon(0.0), + lat(0.0) +{ +} + + inline istream& operator >> ( istream& in, FGFix& f ) { - in >> f.ident >> f.lat >> f.lon; + in >> f.lat; + + if ( f.lat > 95.0 ) { + return in >> skipeol; + } + in >> f.lon >> f.ident; // cout << "id = " << f.ident << endl; - // return in >> skipeol; - return in; + return in >> skipeol; }