refs #858, fixed todo by adding "getInterimPositionReceivers()"

This commit is contained in:
Klaus Basan
2017-01-12 18:13:02 +01:00
committed by Mathew Sutcliffe
parent 61e7f23847
commit 63e2743867
9 changed files with 19 additions and 8 deletions

View File

@@ -659,14 +659,14 @@ namespace BlackCore
{
if (this->isDebugEnabled()) { CLogMessage(this, CLogCategory::contextSlot()).debug() << Q_FUNC_INFO << callsigns; }
Q_ASSERT(this->m_network);
this->m_network->setInterimPositionReceivers(callsigns);
}
CCallsignSet CContextNetwork::getFastPositionEnabledCallsigns()
CCallsignSet CContextNetwork::getFastPositionEnabledCallsigns() const
{
if (this->isDebugEnabled()) { CLogMessage(this, CLogCategory::contextSlot()).debug() << Q_FUNC_INFO; }
Q_ASSERT(this->m_network);
//! \todo Fast position updates in vatlib
return CCallsignSet();
return this->m_network->getInterimPositionReceivers();
}
void CContextNetwork::testCreateDummyOnlineAtcStations(int number)