]> git.mxchange.org Git - flightgear.git/blob - src/Traffic/Schedule.hxx
Boris Koenig:
[flightgear.git] / src / Traffic / Schedule.hxx
1 /* -*- Mode: C++ -*- *****************************************************
2  * Schedule.hxx
3  * Written by Durk Talsma. Started May 5, 2004
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  *
20  **************************************************************************/
21
22 /**************************************************************************
23  * This file contains the definition of the class Shedule.
24  *
25  * A schedule is basically a number of scheduled flights, wich can be
26  * assigned to an AI aircraft. 
27  **************************************************************************/
28
29 #ifndef _FGSCHEDULE_HXX_
30 #define _FGSCHEDULE_HXX_
31
32
33 class FGAISchedule
34 {
35  private:
36   string modelPath;
37   string livery;
38   string registration;
39   bool heavy;
40   FGScheduledFlightVec flights;
41   float lat;
42   float lon; 
43   void* AIManagerRef;
44   bool firstRun;
45
46  public:
47   FGAISchedule();                                           // constructor
48   FGAISchedule(string, string, string, bool, FGScheduledFlightVec);  // construct & init
49   FGAISchedule(const FGAISchedule &other);             // copy constructor
50
51   ~FGAISchedule(); //destructor
52
53   void update(time_t now);
54   // More member functions follow later
55
56 };
57
58 typedef vector<FGAISchedule>           ScheduleVector;
59 typedef vector<FGAISchedule>::iterator ScheduleVectorIterator;
60
61 #endif
62