blob: 910e43938cb6dbdb3374fea6e592fa934f6238d1 [file] [log] [blame]
#pragma once
#include "interfaces/report.hpp"
namespace interfaces
{
class ReportManager
{
public:
virtual ~ReportManager() = default;
virtual void removeReport(const interfaces::Report* report) = 0;
virtual void updateReport(const std::string& name) = 0;
};
} // namespace interfaces