]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/parking.cxx
Merge branch 'next' of gitorious.org:fg/flightgear into next
[flightgear.git] / src / Airports / parking.cxx
index ebc06210fb4f8c5121c721a7af13adae7d92ba89..d1fb6512f5978c4d78c09b7a940807f76931beab 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)
-{
-  heading      = hdg;
-  parkingName  = name;
-  type         = tpe;
-  airlineCodes = codes;
+// 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)
+// {
+//   heading      = hdg;
+//   parkingName  = name;
+//   type         = tpe;
+//   airlineCodes = codes;
+// }
+FGParking::~FGParking() {
+     delete pushBackRoute; 
 }