blob: 4b3bd9ebb55daf3aa90489c53f59d9275dd5211f [file] [log] [blame]
#pragma once
#include <string>
namespace interfaces
{
class Report
{
public:
virtual ~Report() = default;
virtual std::string getId() const = 0;
virtual std::string getPath() const = 0;
virtual void updateReadings() = 0;
};
} // namespace interfaces