Ref T27, store flight plan remarks in VATSIM reader

This can be used in airspace monitor
This commit is contained in:
Klaus Basan
2017-06-25 19:45:10 +02:00
committed by Mathew Sutcliffe
parent 39bd8aa2bb
commit 042f725e54
4 changed files with 49 additions and 21 deletions

View File

@@ -121,6 +121,11 @@ namespace BlackCore
//! \remarks pseudo synchronous, call the async functions and waits for result
BlackMisc::Aviation::CFlightPlan loadFlightPlanFromNetwork(const BlackMisc::Aviation::CCallsign &callsign);
//! Try to get flight plan remarks
//! \remarks returns a value only if the flight plan is already cached
//! \threadsafe
QString tryToGetFlightPlanRemarks(const BlackMisc::Aviation::CCallsign &callsign) const;
//! Returns this list of other clients we know about
//! \threadsafe
BlackMisc::Network::CClientList getOtherClients() const;
@@ -286,6 +291,9 @@ namespace BlackCore
//! Connected with network?
bool isConnected() const;
//! Supports VATSIM data file
bool supportsVatsimDataFile() const;
//! Distance calculation
BlackMisc::PhysicalQuantities::CLength calculateDistanceToOwnAircraft(const BlackMisc::Aviation::CAircraftSituation &situation) const;