blob: 51fc8fa24b0d69e59c836365f0580cdb0b5cd506 [file] [log] [blame]
#pragma once
#include "metric_value.hpp"
#include <vector>
namespace interfaces
{
class Metric
{
public:
virtual ~Metric() = default;
virtual const std::vector<MetricValue>& getReadings() const = 0;
};
} // namespace interfaces