]> git.mxchange.org Git - flightgear.git/blob - src/Navaids/fix.hxx
Patches from Erik Hofman for SGI compatibility:
[flightgear.git] / src / Navaids / fix.hxx
1 // fix.hxx -- fix class
2 //
3 // Written by Curtis Olson, started April 2000.
4 //
5 // Copyright (C) 2000  Curtis L. Olson - curt@flightgear.org
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #ifndef _FG_FIX_HXX
25 #define _FG_FIX_HXX
26
27
28 #ifdef HAVE_CONFIG_H
29 #  include <config.h>
30 #endif
31
32 #include <simgear/compiler.h>
33 #include <simgear/misc/sgstream.hxx>
34
35 #ifdef SG_HAVE_STD_INCLUDES
36 #  include <istream>
37 #elif defined( __BORLANDC__ ) || (__APPLE__)
38 #  include <iostream>
39 #else
40 #  include <istream.h>
41 #endif
42
43 SG_USING_STD(istream);
44
45 #include STL_STRING
46 SG_USING_STD(string);
47
48
49 class FGFix {
50
51     string ident;
52     double lon, lat;
53
54 public:
55
56     inline FGFix(void);
57     inline ~FGFix(void) {}
58
59     inline string get_ident() const { return ident; }
60     inline double get_lon() const { return lon; }
61     inline double get_lat() const { return lat; }
62
63     friend istream& operator>> ( istream&, FGFix& );
64 };
65
66
67 inline
68 FGFix::FGFix()
69   : ident(""),
70     lon(0.0),
71     lat(0.0)
72 {
73 }
74
75
76 inline istream&
77 operator >> ( istream& in, FGFix& f )
78 {
79     in >> f.ident;
80
81     if ( f.ident[0] == '[' )
82         return in >> skipeol;
83
84     in >> f.lat >> f.lon;
85
86     // cout << "id = " << f.ident << endl;
87
88     return in >> skipeol;
89 }
90
91
92 #endif // _FG_FIX_HXX