forked from rpuig2001/CDM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlane.h
More file actions
23 lines (21 loc) · 794 Bytes
/
Plane.h
File metadata and controls
23 lines (21 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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;
Plane(string mycallsign, string myeobt, string mytsat, string myttot, string myctot, string myFlowReason, EcfmpRestriction myEcfmpRestriction, bool myHasEcfmpRestriction, bool myHasManualCtot, bool myShowData) :
callsign(mycallsign), eobt(myeobt), tsat(mytsat), ttot(myttot), ctot(myctot), flowReason(myFlowReason), ecfmpRestriction(myEcfmpRestriction), hasEcfmpRestriction(myHasEcfmpRestriction), hasManualCtot(myHasManualCtot), showData(myShowData) { }
Plane() {};
};