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