Wludzik, Jozef | 2f9f9b8 | 2020-10-13 09:07:45 +0200 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include <string> | ||||
4 | |||||
5 | namespace interfaces | ||||
6 | { | ||||
7 | |||||
8 | class 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 |