refs #395, removed worker from interpolator

It was planned to do all interpolation calculations at once in background,
this concept is not used anymore
This commit is contained in:
Klaus Basan
2015-05-06 02:48:13 +02:00
committed by Mathew Sutcliffe
parent 66075ca0d0
commit bbd5ad2cbc
2 changed files with 5 additions and 4 deletions

View File

@@ -19,11 +19,12 @@ using namespace BlackMisc::Simulation;
namespace BlackCore
{
IInterpolator::IInterpolator(IRemoteAircraftProvider *provider, const QString &workerName, QObject *parent) :
CContinuousWorker(parent, workerName),
IInterpolator::IInterpolator(IRemoteAircraftProvider *provider, const QString &objectName, QObject *parent) :
QObject(parent),
CRemoteAircraftAware(provider)
{
Q_ASSERT_X(provider, Q_FUNC_INFO, "missing provider");
this->setObjectName(objectName);
}
CAircraftPartsList IInterpolator::getPartsBeforeTime(const CCallsign &callsign, qint64 cutoffTime, BlackCore::IInterpolator::PartsStatus &partsStatus)