blob: 98421beece7be0cf343e385a0b575bad60845df8 [file] [log] [blame]
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +02001#pragma once
2
3#include <string>
4
5namespace interfaces
6{
7
8class Report
9{
10 public:
11 virtual ~Report() = default;
12
13 virtual std::string getName() const = 0;
14 virtual std::string getPath() const = 0;
15};
16} // namespace interfaces