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
22 lines (20 loc) · 661 Bytes
/
Plane.h
File metadata and controls
22 lines (20 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once
#include <iostream>
#include <string>
#include "Flow.h"
using namespace std;
class Plane {
public:
string callsign;
string eobt;
string tsat;
string ttot;
bool hasCtot;
string ctot;
int hasRestriction;
Flow flowRestriction;
bool hasManualCtot;
Plane(string mycallsign, string myeobt, string mytsat, string myttot, bool myhasCtot, string myctot, int myhasRestriction, Flow myFlowRestriction, bool myHasManualCtot) :
callsign(mycallsign), eobt(myeobt), tsat(mytsat), ttot(myttot), hasCtot(myhasCtot), ctot(myctot), hasRestriction(myhasRestriction), flowRestriction(myFlowRestriction), hasManualCtot(myHasManualCtot) { }
Plane() {};
};