1 /* -*- Mode: C++ -*- *****************************************************
3 * Written by Durk Talsma. Started May 5, 2004
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.
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.
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.
20 **************************************************************************/
22 /**************************************************************************
23 * This file contains the definition of the class Shedule.
25 * A schedule is basically a number of scheduled flights, wich can be
26 * assigned to an AI aircraft.
27 **************************************************************************/
29 #ifndef _FGSCHEDULE_HXX_
30 #define _FGSCHEDULE_HXX_
40 FGScheduledFlightVec flights;
47 FGAISchedule(); // constructor
48 FGAISchedule(string, string, string, bool, FGScheduledFlightVec); // construct & init
49 FGAISchedule(const FGAISchedule &other); // copy constructor
51 ~FGAISchedule(); //destructor
53 void update(time_t now);
54 // More member functions follow later
58 typedef vector<FGAISchedule> ScheduleVector;
59 typedef vector<FGAISchedule>::iterator ScheduleVectorIterator;