]> git.mxchange.org Git - flightgear.git/blob - src/Navaids/fix.hxx
FG_ to SG_ namespace changes.
[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 #include <simgear/compiler.h>
29 #include <simgear/misc/fgstream.hxx>
30
31 #ifdef SG_HAVE_STD_INCLUDES
32 #  include <istream>
33 #elif defined( SG_HAVE_NATIVE_SGI_COMPILERS )
34 #  include <iostream.h>
35 #elif defined( __BORLANDC__ )
36 #  include <iostream>
37 #else
38 #  include <istream.h>
39 #endif
40
41 #if ! defined( SG_HAVE_NATIVE_SGI_COMPILERS )
42 SG_USING_STD(istream);
43 #endif
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 istream&
68 operator >> ( istream& in, FGFix& f )
69 {
70     in >> f.ident >> f.lat >> f.lon;
71
72     // cout << "id = " << f.ident << endl;
73
74     // return in >> skipeol;
75     return in;
76 }
77
78
79 #endif // _FG_FIX_HXX