]> git.mxchange.org Git - flightgear.git/blob - src/Airports/parking.cxx
Merge branch 'next' into durk-atc
[flightgear.git] / src / Airports / parking.cxx
1 // parking.cxx - Implementation of a class to manage aircraft parking in
2 // FlightGear. This code is intended to be used by AI code and
3 // initial user-startup location selection.
4 //
5 // Written by Durk Talsma, started December 2004.
6 //
7 // Copyright (C) 2004 Durk Talsma.
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
22 //
23 // $Id$
24
25 #ifdef HAVE_CONFIG_H
26 #  include <config.h>
27 #endif
28
29 #include <simgear/compiler.h>
30
31 #include <string>
32
33 #include "parking.hxx"
34 #include "groundnetwork.hxx"
35
36 /*********************************************************************************
37  * FGParking
38  ********************************************************************************/
39 // FGParking::FGParking(double lat,
40 //                   double lon,
41 //                   double hdg,
42 //                   double rad,
43 //                   int idx,
44 //                   const string &name,
45 //                   const string &tpe,
46 //                   const string &codes)
47 //   : FGTaxiNode(lat,lon,idx)
48 // {
49 //   heading      = hdg;
50 //   parkingName  = name;
51 //   type         = tpe;
52 //   airlineCodes = codes;
53 // }
54 FGParking::~FGParking() {
55      delete pushBackRoute; 
56 }