- 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
+23
View File
@@ -0,0 +1,23 @@
#include "Tracker.hpp"
namespace Radio
{
namespace Metrics
{
Tracker::Tracker(IMinMax const &prov_minMax)
: m_prov_minMax(prov_minMax)
{
}
Tracker::~Tracker()
{
}
void Tracker::process(ComplexScalar const &x)
{
}
} // Metrics
} // Radio