1
0
Fork 0

Add some stub functions to FGTower to aid ATC dialog box development

This commit is contained in:
daveluff 2002-12-17 11:36:14 +00:00
parent 3cb4d55342
commit 4b9c0ad822
2 changed files with 19 additions and 1 deletions

View file

@ -102,3 +102,19 @@ void FGTower::Update() {
}
++play;
}
void FGTower::RequestLandingClearance(string ID) {
cout << "Request Landing Clearance called...\n";
}
void FGTower::RequestDepartureClearance(string ID) {
cout << "Request Departure Clearance called...\n";
}
//void FGTower::ReportFinal(string ID);
//void FGTower::ReportLongFinal(string ID);
//void FGTower::ReportOuterMarker(string ID);
//void FGTower::ReportMiddleMarker(string ID);
//void FGTower::ReportInnerMarker(string ID);
//void FGTower::ReportGoingAround(string ID);
void FGTower::ReportRunwayVacated(string ID) {
cout << "Report Runway Vacated Called...\n";
}

View file

@ -83,7 +83,9 @@ class FGTower : public FGATC {
void Init();
void Update();
void RequestLandingClearance(string ID);
void RequestDepartureClearance(string ID);
void ReportFinal(string ID);
void ReportLongFinal(string ID);
void ReportOuterMarker(string ID);