xref: /openbmc/pldm/host-bmc/dbus/chassis.cpp (revision db65c3b47728d7356728befb1df5a8dd7d3f298d)
1 #include "chassis.hpp"
2 
3 namespace pldm
4 {
5 namespace dbus
6 {
7 
type() const8 auto ItemChassis::type() const -> ChassisType
9 {
10     return sdbusplus::xyz::openbmc_project::Inventory::Item::server::Chassis::
11         type();
12 }
13 
type(ChassisType value)14 auto ItemChassis::type(ChassisType value) -> ChassisType
15 {
16     return sdbusplus::xyz::openbmc_project::Inventory::Item::server::Chassis::
17         type(value);
18 }
19 
20 } // namespace dbus
21 } // namespace pldm
22