blob: 323f13bf70c3b3da7bbbdb74ae5561f1ee2aac97 [file] [log] [blame]
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +02001#pragma once
2
3#include "interfaces/report.hpp"
Szymon Dompkeb4ef22e2022-02-07 15:15:12 +01004#include "types/report_types.hpp"
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +02005
6namespace interfaces
7{
8
9class ReportManager
10{
11 public:
12 virtual ~ReportManager() = default;
13
14 virtual void removeReport(const interfaces::Report* report) = 0;
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020015};
16
17} // namespace interfaces