Ref T259, Ref T243 use "getInterpolatedOrGuessedParts" in XPlane

This commit is contained in:
Klaus Basan
2018-04-13 22:45:20 +02:00
committed by Roland Winklmeier
parent 1ff0607e42
commit 94a334ad75
3 changed files with 19 additions and 8 deletions

View File

@@ -78,6 +78,15 @@ namespace BlackSimPlugin
return m_interpolator->getInterpolatedParts(currentTimeSinceEpoc, setup, partsStatus, log);
}
CAircraftParts CXPlaneMPAircraft::getInterpolatedOrGuessedParts(
qint64 currentTimeSinceEpoc,
const CInterpolationAndRenderingSetupPerCallsign &setup,
CPartsStatus &partsStatus, bool log) const
{
Q_ASSERT(m_interpolator);
return m_interpolator->getInterpolatedOrGuessedParts(currentTimeSinceEpoc, setup, partsStatus, log);
}
CCallsignSet CXPlaneMPAircraftObjects::getAllCallsigns() const
{
return CCallsignSet(this->keys());