blob: 3415712e6d00a65058d26c58d02eec33cfc013ce [file] [log] [blame]
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +02001#pragma once
2
Szymon Dompkeb4ef22e2022-02-07 15:15:12 +01003#include "types/report_types.hpp"
4
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +02005#include <string>
6
7namespace interfaces
8{
9
10class Report
11{
12 public:
13 virtual ~Report() = default;
14
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010015 virtual std::string getId() const = 0;
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020016 virtual std::string getPath() const = 0;
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020017};
18} // namespace interfaces