Archana Kakani | db65c3b | 2025-02-03 05:27:28 -0600 | [diff] [blame] | 1 | #include "chassis.hpp" |
2 | |||||
3 | namespace pldm | ||||
4 | { | ||||
5 | namespace dbus | ||||
6 | { | ||||
7 | |||||
8 | auto ItemChassis::type() const -> ChassisType | ||||
9 | { | ||||
10 | return sdbusplus::xyz::openbmc_project::Inventory::Item::server::Chassis:: | ||||
11 | type(); | ||||
12 | } | ||||
13 | |||||
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 |