]> git.mxchange.org Git - flightgear.git/blob - src/Airports/parking.cxx
Overhaul the ground-net / parking code.
[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
35 /*********************************************************************************
36  * FGParking
37  ********************************************************************************/
38
39 FGParking::FGParking(PositionedID aGuid, const SGGeod& pos,
40                      double aHeading, double aRadius,
41                      const std::string& name, const std::string& aType,
42                      const std::string& codes,
43                      PositionedID pushBackNode) :
44   FGTaxiNode(aGuid, pos, false, 0),
45   heading(aHeading),
46   radius(aRadius),
47   parkingName(name),
48   type(aType),
49   airlineCodes(codes),
50   pushBackPoint(pushBackNode)
51 {
52 }
53
54 FGParking::~FGParking()
55 {
56 }