2000-04-21 18:30:59 +00:00
|
|
|
// fix.hxx -- fix class
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started April 2000.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2000 Curtis L. Olson - curt@flightgear.org
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _FG_FIX_HXX
|
|
|
|
#define _FG_FIX_HXX
|
|
|
|
|
|
|
|
|
2001-05-15 22:30:39 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2000-04-21 18:30:59 +00:00
|
|
|
#include <simgear/compiler.h>
|
2001-03-25 14:20:12 +00:00
|
|
|
#include <simgear/misc/sgstream.hxx>
|
2000-04-21 18:30:59 +00:00
|
|
|
|
2001-03-23 22:15:19 +00:00
|
|
|
#ifdef SG_HAVE_STD_INCLUDES
|
2000-04-21 18:30:59 +00:00
|
|
|
# include <istream>
|
2002-05-11 12:30:22 +00:00
|
|
|
#elif defined( __BORLANDC__ ) || (__APPLE__)
|
2000-04-21 18:30:59 +00:00
|
|
|
# include <iostream>
|
|
|
|
#else
|
|
|
|
# include <istream.h>
|
|
|
|
#endif
|
|
|
|
|
2001-03-23 22:59:18 +00:00
|
|
|
SG_USING_STD(istream);
|
2000-04-21 18:30:59 +00:00
|
|
|
|
|
|
|
#include STL_STRING
|
2001-03-23 22:59:18 +00:00
|
|
|
SG_USING_STD(string);
|
2000-04-21 18:30:59 +00:00
|
|
|
|
2004-05-26 16:40:27 +00:00
|
|
|
// SG_USING_STD(cout);
|
|
|
|
// SG_USING_STD(endl);
|
|
|
|
|
2000-04-21 18:30:59 +00:00
|
|
|
|
|
|
|
class FGFix {
|
|
|
|
|
|
|
|
string ident;
|
|
|
|
double lon, lat;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2002-03-30 12:50:01 +00:00
|
|
|
inline FGFix(void);
|
2000-04-21 18:30:59 +00:00
|
|
|
inline ~FGFix(void) {}
|
|
|
|
|
|
|
|
inline string get_ident() const { return ident; }
|
|
|
|
inline double get_lon() const { return lon; }
|
|
|
|
inline double get_lat() const { return lat; }
|
|
|
|
|
|
|
|
friend istream& operator>> ( istream&, FGFix& );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-03-30 12:50:01 +00:00
|
|
|
inline
|
|
|
|
FGFix::FGFix()
|
|
|
|
: ident(""),
|
|
|
|
lon(0.0),
|
|
|
|
lat(0.0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-21 18:30:59 +00:00
|
|
|
inline istream&
|
|
|
|
operator >> ( istream& in, FGFix& f )
|
|
|
|
{
|
2004-05-26 16:40:27 +00:00
|
|
|
in >> f.lat;
|
2002-03-30 12:50:01 +00:00
|
|
|
|
2004-05-26 16:40:27 +00:00
|
|
|
if ( f.lat > 95.0 ) {
|
2002-03-30 12:50:01 +00:00
|
|
|
return in >> skipeol;
|
2004-05-26 16:40:27 +00:00
|
|
|
}
|
|
|
|
in >> f.lon >> f.ident;
|
2000-04-21 18:30:59 +00:00
|
|
|
|
|
|
|
// cout << "id = " << f.ident << endl;
|
|
|
|
|
2002-03-30 12:50:01 +00:00
|
|
|
return in >> skipeol;
|
2000-04-21 18:30:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _FG_FIX_HXX
|