#ifndef _INTERPOLATION_INTERPOLATOR_HPP_ #define _INTERPOLATION_INTERPOLATOR_HPP_ #pragma once #include #include namespace Radio { namespace Interpolation { class Interpolator { public: Interpolator(); virtual ~Interpolator(); void setMu(radio_float_t mu); radio_float_t getMu(); size_t process(radio_float_t dMu); private: radio_float_t m_mu; }; } // Interpolation } // Radio #endif // _INTERPOLATION_INTERPOLATOR_HPP_