This commit is contained in:
Klaus Basan
2017-09-04 18:02:31 +02:00
committed by Mathew Sutcliffe
parent 7c723b8b79
commit 1baf74ebf3

View File

@@ -22,6 +22,7 @@ namespace BlackMisc
{ {
/*! /*!
* Multiplexed interpolator which allows switching between modes at runtime. * Multiplexed interpolator which allows switching between modes at runtime.
* \remark currently switching mode is only a developer feature, see https://swift-project.slack.com/archives/C04J6J76N/p1504536854000049
*/ */
class BLACKMISC_EXPORT CInterpolatorMulti : public QObject class BLACKMISC_EXPORT CInterpolatorMulti : public QObject
{ {
@@ -82,6 +83,7 @@ namespace BlackMisc
Mode m_mode = ModeSpline; Mode m_mode = ModeSpline;
CInterpolatorSpline m_spline; CInterpolatorSpline m_spline;
#ifdef QT_DEBUG #ifdef QT_DEBUG
//! only in a dev.environment, otherwise replaced by low footprint dummy driver
CInterpolatorLinear m_linear; CInterpolatorLinear m_linear;
#else #else
CInterpolatorDummy m_linear; CInterpolatorDummy m_linear;