]> git.mxchange.org Git - flightgear.git/blob - src/Airports/parking.hxx
Fix a typo.
[flightgear.git] / src / Airports / parking.hxx
1 // parking.hxx - A class to handle airport startup locations 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 #ifndef _PARKING_HXX_
26 #define _PARKING_HXX_
27
28 #ifndef __cplusplus
29 # error This library requires C++
30 #endif
31
32 #include <simgear/compiler.h>
33 #include <simgear/sg_inlines.h>
34
35 #include <string>
36 #include <vector>
37 #include <memory> // for std::auto_ptr
38
39 #include "gnnode.hxx"
40
41
42 class FGParking : public FGTaxiNode
43 {
44 private:
45   const double heading;
46   const double radius;
47   const std::string parkingName;
48   const std::string type;
49   const std::string airlineCodes;
50   const PositionedID pushBackPoint;
51
52   SG_DISABLE_COPY(FGParking);
53 public:
54   FGParking(PositionedID aGuid, const SGGeod& pos,
55             double heading, double radius,
56             const std::string& name, const std::string& type,
57             const std::string& codes,
58             PositionedID pushBackNode);
59   virtual ~FGParking();
60 #if 0
61   void setHeading  (double hdg)  { heading     = hdg;  };
62   void setRadius   (double rad)  { radius      = rad;  };
63
64   void setName     (const std::string& name) { parkingName = name; };
65   void setType     (const std::string& tpe)  { type        = tpe;  };
66   void setCodes    (const std::string& codes){ airlineCodes= codes;};
67 #endif
68   
69   double getHeading  () const { return heading;     };
70   double getRadius   () const { return radius;      };
71
72   std::string getType     () const { return type;        };
73   std::string getCodes    () const { return airlineCodes;};
74   std::string getName     () const { return parkingName; };
75
76   int getPushBackPoint () { return pushBackPoint; };
77
78   bool operator< (const FGParking &other) const {
79     return radius < other.radius; };
80 };
81
82 typedef std::vector<FGParking*> FGParkingVec;
83 typedef FGParkingVec::iterator FGParkingVecIterator;
84 typedef FGParkingVec::const_iterator FGParkingVecConstIterator;
85
86 #endif