git-svn-id: http://moon:8086/svn/software/trunk/libsrc/cpp@1035 b431acfa-c32f-4a4a-93f1-934dc6c82436
27 lines
406 B
C++
27 lines
406 B
C++
#ifndef _METRICS_TRACKER_HPP_
|
|
#define _METRICS_TRACKER_HPP_
|
|
|
|
#pragma once
|
|
|
|
#include <cpp/radio/Vector.hpp>
|
|
#include "IMinMax.hpp"
|
|
|
|
namespace Radio
|
|
{
|
|
namespace Metrics
|
|
{
|
|
|
|
class Tracker
|
|
{
|
|
public:
|
|
Tracker(IMinMax const &statsProvider);
|
|
virtual ~Tracker();
|
|
void process(ComplexScalar const &x);
|
|
private:
|
|
IMinMax const &m_prov_minMax;
|
|
};
|
|
|
|
} // Metrics
|
|
} // Radio
|
|
|
|
#endif // _METRICS_TRACKER_HPP_
|