blob: 4ec507052beb5c3bdfb8e1f7dd42e2d2b13945a9 [file] [log] [blame]
Wludzik, Jozef76833cb2020-12-21 14:42:41 +01001#pragma once
2
3#include <string>
4
5namespace interfaces
6{
7
8class Trigger
9{
10 public:
11 virtual ~Trigger() = default;
12
Szymon Dompkee28aa532021-10-27 12:33:12 +020013 virtual std::string getId() const = 0;
Wludzik, Jozef76833cb2020-12-21 14:42:41 +010014 virtual std::string getPath() const = 0;
15};
16
17} // namespace interfaces