Wludzik, Jozef | 76833cb | 2020-12-21 14:42:41 +0100 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include <string> | ||||
4 | |||||
5 | namespace interfaces | ||||
6 | { | ||||
7 | |||||
8 | class Trigger | ||||
9 | { | ||||
10 | public: | ||||
11 | virtual ~Trigger() = default; | ||||
12 | |||||
Szymon Dompke | e28aa53 | 2021-10-27 12:33:12 +0200 | [diff] [blame] | 13 | virtual std::string getId() const = 0; |
Wludzik, Jozef | 76833cb | 2020-12-21 14:42:41 +0100 | [diff] [blame] | 14 | virtual std::string getPath() const = 0; |
15 | }; | ||||
16 | |||||
17 | } // namespace interfaces |