Ref T429, style and CLANG warnings

This commit is contained in:
Klaus Basan
2018-11-08 02:29:53 +01:00
parent 180214e4f0
commit 839c75effc
2 changed files with 16 additions and 7 deletions

View File

@@ -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

View File

@@ -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;