]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/parking.cxx
Checkpoint - ground-net skips the cache
[flightgear.git] / src / Airports / parking.cxx
index ebc06210fb4f8c5121c721a7af13adae7d92ba89..b5c8f1ef0667fd5055190d9f45f082ac5a7fa0d9 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"
 
 /*********************************************************************************
  * 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(int index,
+                     const SGGeod& pos,
+                     double aHeading, double aRadius,
+                     const std::string& name,
+                     const std::string& aType,
+                     const std::string& codes) :
+  FGTaxiNode(index, pos, false, 0),
+  heading(aHeading),
+  radius(aRadius),
+  parkingName(name),
+  type(aType),
+  airlineCodes(codes)
+{
+}
+
+FGParking::~FGParking()
+{
+}
+
+void FGParking::setPushBackPoint(const FGTaxiNodeRef &node)
 {
-  heading      = hdg;
-  parkingName  = name;
-  type         = tpe;
-  airlineCodes = codes;
+    pushBackPoint = node;
 }