]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/simple.hxx
Add a *really* crude model of ITT, Oil Temp, and Oil Pressure. This
[flightgear.git] / src / Airports / simple.hxx
index 2d25e16d5d74dfdc1f1186250044936fe855a8fa..d6c84a7b49a1e92368434f75eb31ccb7b63cef57 100644 (file)
@@ -4,7 +4,7 @@
 //
 // Written by Curtis Olson, started April 1998.
 //
-// Copyright (C) 1998  Curtis L. Olson  - curt@me.umn.edu
+// Copyright (C) 1998  Curtis L. Olson  - http://www.flightgear.org/~curt
 //
 // This program is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License as
@@ -48,7 +48,6 @@ SG_USING_STD(vector);
 
 
 struct FGAirport {
-
     string id;
     double longitude;
     double latitude;
@@ -75,7 +74,7 @@ private:
 public:
 
     // Constructor
-    FGAirportList( const stringfile );
+    FGAirportList( const string &airport_file, const string &metar_file );
 
     // Destructor
     ~FGAirportList();
@@ -102,7 +101,7 @@ public:
     /**
      * Return a specific airport, by position.
      */
-    const FGAirport getAirport( int index ) const;
+    const FGAirport *getAirport( int index ) const;
 
 
     /**