Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
telemetry
/
b1ff1f65c422b51ffe48837b3a89d2b736a441e0
/
.
/
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