Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
telemetry
/
cff70c14ef8cadb7fffd0cd41e06b972fa240e56
/
.
/
src
/
interfaces
/
trigger.hpp
blob: c76c0194f84727b9fcd7db2ec85a86cf225e13c9 [
file
] [
log
] [
blame
]
#pragma
once
#include
<string>
#include
<vector>
namespace
interfaces
{
class
Trigger
{
public
:
virtual
~
Trigger
()
=
default
;
virtual
std
::
string
getId
()
const
=
0
;
virtual
std
::
string
getPath
()
const
=
0
;
};
}
// namespace interfaces