]> git.mxchange.org Git - flightgear.git/blob - src/Navaids/fix.hxx
Small tweaks to initialization sequence and logic so we can default to
[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( SG_HAVE_NATIVE_SGI_COMPILERS )
38 #  include <iostream.h>
39 #elif defined( __BORLANDC__ )
40 #  include <iostream>
41 #else
42 #  include <istream.h>
43 #endif
44
45 #if ! defined( SG_HAVE_NATIVE_SGI_COMPILERS )
46 SG_USING_STD(istream);
47 #endif
48
49 #include STL_STRING
50 SG_USING_STD(string);
51
52
53 class FGFix {
54
55     string ident;
56     double lon, lat;
57
58 public:
59
60     inline FGFix(void) {}
61     inline ~FGFix(void) {}
62
63     inline string get_ident() const { return ident; }
64     inline double get_lon() const { return lon; }
65     inline double get_lat() const { return lat; }
66
67     friend istream& operator>> ( istream&, FGFix& );
68 };
69
70
71 inline istream&
72 operator >> ( istream& in, FGFix& f )
73 {
74     in >> f.ident >> f.lat >> f.lon;
75
76     // cout << "id = " << f.ident << endl;
77
78     // return in >> skipeol;
79     return in;
80 }
81
82
83 #endif // _FG_FIX_HXX