]> git.mxchange.org Git - flightgear.git/blob - src/Airports/simple.hxx
Fix a small oops on my part.
[flightgear.git] / src / Airports / simple.hxx
1 // simple.hxx -- a really simplistic class to manage airport ID,
2 //                 lat, lon of the center of one of it's runways, and 
3 //                 elevation in feet.
4 //
5 // Written by Curtis Olson, started April 1998.
6 //
7 // Copyright (C) 1998  Curtis L. Olson  - curt@me.umn.edu
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 //
23 // $Id$
24
25
26 #ifndef _FG_SIMPLE_HXX
27 #define _FG_SIMPLE_HXX
28
29
30 #ifndef __cplusplus                                                          
31 # error This library requires C++
32 #endif                                   
33
34
35 #ifdef HAVE_CONFIG_H
36 #  include <config.h>
37 #endif
38
39 #include <simgear/compiler.h>
40
41 #include STL_STRING
42 #include <map>
43
44 SG_USING_STD(string);
45 SG_USING_STD(map);
46
47
48 class FGAirport {
49
50 public:
51
52     string id;
53     double longitude;
54     double latitude;
55     double elevation;
56     string code;
57     string name;
58
59 public:
60
61     FGAirport( const string& name = "",
62                double lon = 0.0,
63                double lat = 0.0,
64                double ele = 0.0 )
65         : id(name), longitude(lon), latitude(lat), elevation(ele) {}
66
67     bool operator < ( const FGAirport& a ) const {
68         return id < a.id;
69     }
70
71 };
72
73 typedef map < string, FGAirport > airport_map;
74 typedef airport_map::iterator airport_map_iterator;
75 typedef airport_map::const_iterator const_airport_map_iterator;
76
77
78 class FGAirportList {
79
80 private:
81
82     airport_map airports;
83
84 public:
85
86     // Constructor
87     FGAirportList( const string& file );
88
89     // Destructor
90     ~FGAirportList();
91
92     // search for the specified id.
93     // Returns true if successful, otherwise returns false.
94     // On success, airport data is returned thru "airport" pointer.
95     // "airport" is not changed if "apt" is not found.
96     FGAirport search( const string& id );
97 };
98
99
100 #endif // _FG_SIMPLE_HXX
101
102