X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAIModel%2FAIAircraft.hxx;h=7e65d0df51294732c4543a3dcff5c4461fc50f54;hb=239fea1b54870ca8d47084a532a5995900fb637a;hp=6a53e5a2bf32238b4c61fa6f81e5bfd6a179507e;hpb=e830f29209f9d63218bf0e2f2da04b54ccfbbdb9;p=flightgear.git diff --git a/src/AIModel/AIAircraft.hxx b/src/AIModel/AIAircraft.hxx index 6a53e5a2b..7e65d0df5 100644 --- a/src/AIModel/AIAircraft.hxx +++ b/src/AIModel/AIAircraft.hxx @@ -70,6 +70,8 @@ public: void announcePositionToController(); //TODO have to be public? void processATC(FGATCInstruction instruction); + void setTaxiClearanceRequest(bool arg) { needsTaxiClearance = arg; }; + bool getTaxiClearanceRequest() { return needsTaxiClearance; }; FGAISchedule * getTrafficRef() { return trafficRef; }; virtual const char* getTypeString(void) const { return "aircraft"; } @@ -150,6 +152,7 @@ private: const char * _getTransponderCode() const; bool reachedWaypoint; + bool needsTaxiClearance; time_t timeElapsed; PerformanceData* _performance; // the performance data for this aircraft