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