refactor: Add interface for PBH interpolators

This commit is contained in:
Lars Toenning
2024-01-09 22:42:09 +01:00
parent 3bc2d4062c
commit be2c756c8c
6 changed files with 47 additions and 10 deletions

View File

@@ -60,7 +60,7 @@ namespace BlackMisc
//! End situation
const Aviation::CAircraftSituation &getEndSituation() const { return m_endSituation; }
CInterpolatorLinearPbh pbh() const { return m_pbh; }
const IInterpolatorPbh &pbh() const { return m_pbh; }
private:
Aviation::CAircraftSituation m_startSituation;