]> git.mxchange.org Git - flightgear.git/blob - src/Navaids/fix.hxx
Make a subtle change to tile loading/unloading policy in order to make the tile
[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 // SG_USING_STD(cout);
49 // SG_USING_STD(endl);
50
51
52 class FGFix {
53
54     string ident;
55     double lon, lat;
56
57 public:
58
59     inline FGFix(void);
60     inline ~FGFix(void) {}
61
62     inline string get_ident() const { return ident; }
63     inline double get_lon() const { return lon; }
64     inline double get_lat() const { return lat; }
65
66     friend istream& operator>> ( istream&, FGFix& );
67 };
68
69
70 inline
71 FGFix::FGFix()
72   : ident(""),
73     lon(0.0),
74     lat(0.0)
75 {
76 }
77
78
79 inline istream&
80 operator >> ( istream& in, FGFix& f )
81 {
82     in >> f.lat;
83
84     if ( f.lat > 95.0 ) {
85         return in >> skipeol;
86     }
87     in >> f.lon >> f.ident;
88
89     // cout << "id = " << f.ident << endl;
90
91     return in >> skipeol;
92 }
93
94
95 #endif // _FG_FIX_HXX