refs #250, helper methods

* in aircraft class to compare COM
* in context / runtime component to check vitality of core
This commit is contained in:
Klaus Basan
2014-05-22 12:15:01 +02:00
parent 23b1013be7
commit e0b06e1555
5 changed files with 36 additions and 0 deletions

View File

@@ -88,6 +88,12 @@ namespace BlackGui
//! \remarks use this methods to hook up signal/slots with runtime
virtual void runtimeHasBeenSet() {}
//! \copydoc CRuntime::hasRemoteApplicationContext
bool hasRemoteApplicationContext() const { return this->m_runtime->hasRemoteApplicationContext(); }
//! \copydoc CRuntime::canPingApplicationContext
bool canPingApplicationContext() const { return this->m_runtime->canPingApplicationContext(); }
private:
BlackCore::CRuntime *m_runtime;
bool m_runtimeOwner;