- added metrics

git-svn-id: http://moon:8086/svn/software/trunk/libsrc/cpp@1035 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2022-06-18 07:09:49 +00:00
parent 2f49fb692d
commit dea5ae345d
5 changed files with 191 additions and 0 deletions
+27
View File
@@ -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_