mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-20 12:35:43 +08:00
Ref T429, style and CLANG warnings
This commit is contained in:
@@ -554,7 +554,7 @@ namespace BlackCore
|
|||||||
BlackMisc::Simulation::CSimulatorInternals m_simulatorInternals; //!< setup object
|
BlackMisc::Simulation::CSimulatorInternals m_simulatorInternals; //!< setup object
|
||||||
BlackMisc::Simulation::CInterpolationLogger m_interpolationLogger; //!< log.interpolation
|
BlackMisc::Simulation::CInterpolationLogger m_interpolationLogger; //!< log.interpolation
|
||||||
BlackMisc::Aviation::CTimestampPerCallsign m_clampedLogMsg; //!< when logged last for this callsign, can be used so there is no log message overflow
|
BlackMisc::Aviation::CTimestampPerCallsign m_clampedLogMsg; //!< when logged last for this callsign, can be used so there is no log message overflow
|
||||||
BlackMisc::Aviation::CAircraftSituationPerCallsign m_lastSentSituations; //!< last situation sent to simulator
|
BlackMisc::Aviation::CAircraftSituationPerCallsign m_lastSentSituations; //!< last situations sent to simulator
|
||||||
BlackMisc::Aviation::CAircraftPartsPerCallsign m_lastSentParts; //!< last parts sent to simulator
|
BlackMisc::Aviation::CAircraftPartsPerCallsign m_lastSentParts; //!< last parts sent to simulator
|
||||||
|
|
||||||
// some optional functionality which can be used by the simulators as needed
|
// some optional functionality which can be used by the simulators as needed
|
||||||
|
|||||||
@@ -55,9 +55,18 @@ namespace BlackMisc
|
|||||||
IndexNormalVector
|
IndexNormalVector
|
||||||
};
|
};
|
||||||
|
|
||||||
|
//! Ctor
|
||||||
|
ICoordinateGeodetic() = default;
|
||||||
|
|
||||||
//! Destructor
|
//! Destructor
|
||||||
virtual ~ICoordinateGeodetic();
|
virtual ~ICoordinateGeodetic();
|
||||||
|
|
||||||
|
//! Copy constructor
|
||||||
|
ICoordinateGeodetic(const ICoordinateGeodetic &) = default;
|
||||||
|
|
||||||
|
//! Copy assignment operator
|
||||||
|
ICoordinateGeodetic &operator =(const ICoordinateGeodetic &) = default;
|
||||||
|
|
||||||
//! Latitude
|
//! Latitude
|
||||||
virtual CLatitude latitude() const = 0;
|
virtual CLatitude latitude() const = 0;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user