1 #include "chassis.hpp" 2 3 namespace pldm 4 { 5 namespace dbus 6 { 7 type() const8auto ItemChassis::type() const -> ChassisType 9 { 10 return sdbusplus::xyz::openbmc_project::Inventory::Item::server::Chassis:: 11 type(); 12 } 13 type(ChassisType value)14auto 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