refs #836, display elevation in UI

* added has hasGroundElevation
* added elevation to sim.values
This commit is contained in:
Klaus Basan
2016-12-16 22:10:56 +01:00
committed by Mathew Sutcliffe
parent 1a500340f0
commit 5adb86ae83
3 changed files with 32 additions and 15 deletions

View File

@@ -113,6 +113,9 @@ namespace BlackMisc
//! Elevation of the ground directly beneath
const BlackMisc::Aviation::CAltitude &getGroundElevation() const { return this->m_groundElevation; }
//! Is ground elevation value available
bool hasGroundElevation() const;
//! Elevation of the ground directly beneath
void setGroundElevation(const BlackMisc::Aviation::CAltitude &elevation) { this->m_groundElevation = elevation; }