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