]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/parking.cxx
Remove dead file.
[flightgear.git] / src / Airports / parking.cxx
index ebc06210fb4f8c5121c721a7af13adae7d92ba89..58928dfcfa0863492199131c4a7a296679728ddc 100644 (file)
 #  include <config.h>
 #endif
 
-//#include <algorithm>
-
 #include <simgear/compiler.h>
 
-//#include <plib/sg.h>
-//#include <plib/ul.h>
-
-//#include <Environment/environment_mgr.hxx>
-//#include <Environment/environment.hxx>
-//#include <simgear/misc/sg_path.hxx>
-//#include <simgear/props/props.hxx>
-//#include <simgear/structure/subsystem_mgr.hxx>
-//#include <simgear/debug/logstream.hxx>
-//#include <Main/globals.hxx>
-//#include <Main/fg_props.hxx>
-//#include <Airports/runways.hxx>
-
-#include STL_STRING
+#include <string>
 
 #include "parking.hxx"
+#include "groundnetwork.hxx"
 
 /*********************************************************************************
  * FGParking
  ********************************************************************************/
-FGParking::FGParking(double lat,
-                    double lon,
-                    double hdg,
-                    double rad,
-                    int idx,
-                    const string &name,
-                    const string &tpe,
-                    const string &codes)
-  : FGTaxiNode(lat,lon,idx)
+
+FGParking::FGParking(PositionedID aGuid, int index, const SGGeod& pos,
+                     double aHeading, double aRadius,
+                     const std::string& name, const std::string& aType,
+                     const std::string& codes) :
+  FGTaxiNode(aGuid, index, pos, false, 0),
+  heading(aHeading),
+  radius(aRadius),
+  parkingName(name),
+  type(aType),
+  airlineCodes(codes),
+  available(true),
+  pushBackPoint(0)
+{
+}
+
+FGParking::~FGParking()
 {
-  heading      = hdg;
-  parkingName  = name;
-  type         = tpe;
-  airlineCodes = codes;
 }