-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathPlane.h
More file actions
37 lines (34 loc) · 1.01 KB
/
Copy pathPlane.h
File metadata and controls
37 lines (34 loc) · 1.01 KB
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
#pragma once
#include <iostream>
#include <string>
#include "EcfmpRestriction.h"
using namespace std;
class Plane {
public:
string callsign;
string eobt;
string tsat;
string ttot;
string ctot;
string flowReason;
EcfmpRestriction ecfmpRestriction;
bool hasEcfmpRestriction;
bool hasManualCtot;
bool showData;
bool isCdmAirport;
Plane(string mycallsign, string myeobt, string mytsat, string myttot, string myctot, string myFlowReason,
EcfmpRestriction myEcfmpRestriction, bool myHasEcfmpRestriction, bool myHasManualCtot, bool myShowData,
bool myIsCdmAirport)
: callsign(mycallsign),
eobt(myeobt),
tsat(mytsat),
ttot(myttot),
ctot(myctot),
flowReason(myFlowReason),
ecfmpRestriction(myEcfmpRestriction),
hasEcfmpRestriction(myHasEcfmpRestriction),
hasManualCtot(myHasManualCtot),
showData(myShowData),
isCdmAirport(myIsCdmAirport) {}
Plane() {};
};