refs #242, own aircraft context methods

This commit is contained in:
Klaus Basan
2014-05-20 22:36:51 +02:00
parent c2cd983d64
commit c55c9be51c
3 changed files with 32 additions and 11 deletions

View File

@@ -34,6 +34,16 @@ namespace BlackCore
return this->getRuntime()->getIContextApplication();
}
IContextOwnAircraft *CContext::getIContextOwnAircraft()
{
return this->getRuntime()->getIContextOwnAircraft();
}
const IContextOwnAircraft *CContext::getIContextOwnAircraft() const
{
return this->getRuntime()->getIContextOwnAircraft();
}
IContextSettings *CContext::getIContextSettings()
{
return this->getRuntime()->getIContextSettings();