Files
cpp/radio/interpolation/Interpolator.hpp
T
jens 4192bc92aa - removed debug stuff
git-svn-id: http://moon:8086/svn/software/trunk/libsrc/cpp@978 b431acfa-c32f-4a4a-93f1-934dc6c82436
2022-06-15 10:08:49 +00:00

30 lines
482 B
C++

#ifndef _INTERPOLATION_INTERPOLATOR_HPP_
#define _INTERPOLATION_INTERPOLATOR_HPP_
#pragma once
#include <radio/radio_types.h>
#include <stddef.h>
namespace Radio
{
namespace Interpolation
{
class Interpolator
{
public:
Interpolator();
virtual ~Interpolator();
radio_float_t getMu();
size_t getAdv();
void process(radio_float_t dMu);
private:
radio_float_t m_mu;
size_t m_adv;
};
} // Interpolation
} // Radio
#endif // _INTERPOLATION_INTERPOLATOR_HPP_