blob: 80e0c82a7b83b9f3312ebac7783213c4e3fe75c1 [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;
};
} // namespace interfaces