- added metrics
git-svn-id: http://moon:8086/svn/software/trunk/libsrc/cpp@1035 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#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_
|
||||
Reference in New Issue
Block a user