Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
telemetry
/
4d1c2ce2bf939405b31c5a62c665c04dcc4b0a34
/
.
/
src
/
interfaces
/
report.hpp
blob: 3415712e6d00a65058d26c58d02eec33cfc013ce [
file
] [
log
] [
blame
]
#pragma
once
#include
"types/report_types.hpp"
#include
<string>
namespace
interfaces
{
class
Report
{
public
:
virtual
~
Report
()
=
default
;
virtual
std
::
string
getId
()
const
=
0
;
virtual
std
::
string
getPath
()
const
=
0
;
};
}
// namespace interfaces