-
Notifications
You must be signed in to change notification settings - Fork 0
/
FlightExt.h
39 lines (32 loc) · 838 Bytes
/
FlightExt.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// Created by citteny on 11/26/18.
//
#ifndef TRAGIL2_FLIGHT_H
#define TRAGIL2_FLIGHT_H
#include "interface.h"
class FlightExt : public Flight {
string ID;
int modelNum;
list<Reservation *> reservations;
list<Employee *> crew;
Date dateFlight;
string sourceLocation;
string destLoaction;
public:
FlightExt(string flightID,
int planeModNum,
list<Reservation *> res,
list<Employee *> crew,
string flightSource,
string flightDest,
Date date);
virtual string getID();
virtual int getModelNumber();
virtual list<Reservation *> getReservations();
virtual list<Employee *> getAssignedCrew();
virtual Date getDate();
virtual string getSource();
virtual string getDestination();
virtual ~FlightExt() {}
};
#endif //TRAGIL2_FLIGHT_H