Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
telemetry
/
5ade2b1d0ccb71a3de23396dea77c375bedc0362
/
.
/
src
/
interfaces
/
report.hpp
blob: 98421beece7be0cf343e385a0b575bad60845df8 [
file
] [
log
] [
blame
]
#pragma
once
#include
<string>
namespace
interfaces
{
class
Report
{
public
:
virtual
~
Report
()
=
default
;
virtual
std
::
string
getName
()
const
=
0
;
virtual
std
::
string
getPath
()
const
=
0
;
};
}
// namespace interfaces