]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/runwaybase.hxx
toggle fullscreen: also adapt GUI plane when resizing
[flightgear.git] / src / Airports / runwaybase.hxx
index 745d4cb86b43d6d577d1bebb58424bda7b0e548f..25d2340435cc8168b7a8563cfa622fe691a2cec0 100644 (file)
 class FGRunwayBase : public FGPositioned
 {    
 public:
-  FGRunwayBase(Type aTy, const std::string& aIdent,
+  FGRunwayBase(PositionedID aGuid, Type aTy, const std::string& aIdent,
             const SGGeod& aGeod,
             const double heading, const double length,
             const double width,
-            const int surface_code,
-            bool index);
+            const int surface_code);
             
   /**
    * Retrieve a position on the extended centerline. Positive values
@@ -85,6 +84,7 @@ public:
   { return _surface_code; }
   
 protected:
+    
   double _heading;
   double _length;
   double _width;
@@ -99,7 +99,8 @@ protected:
 class FGTaxiway : public FGRunwayBase
 {
 public:
-  FGTaxiway(const std::string& aIdent,
+  FGTaxiway(PositionedID aGuid,
+            const std::string& aIdent,
             const SGGeod& aGeod,
             const double heading, const double length,
             const double width,