| Wludzik, Jozef | 2f9f9b8 | 2020-10-13 09:07:45 +0200 | [diff] [blame] | 1 | #pragma once |
| 2 | |||||
| 3 | #include "interfaces/report.hpp" | ||||
| 4 | |||||
| 5 | namespace interfaces | ||||
| 6 | { | ||||
| 7 | |||||
| 8 | class ReportManager | ||||
| 9 | { | ||||
| 10 | public: | ||||
| 11 | virtual ~ReportManager() = default; | ||||
| 12 | |||||
| 13 | virtual void removeReport(const interfaces::Report* report) = 0; | ||||
| Wludzik, Jozef | d960e1f | 2021-01-08 09:25:59 +0100 | [diff] [blame] | 14 | virtual void updateReport(const std::string& name) = 0; |
| Wludzik, Jozef | 2f9f9b8 | 2020-10-13 09:07:45 +0200 | [diff] [blame] | 15 | }; |
| 16 | |||||
| 17 | } // namespace interfaces | ||||