1 #include "cable.hpp" 2 3 namespace pldm 4 { 5 namespace dbus 6 { 7 8 double Cable::length() const 9 { 10 return sdbusplus::xyz::openbmc_project::Inventory::Item::server::Cable:: 11 length(); 12 } 13 14 double Cable::length(double value) 15 { 16 return sdbusplus::xyz::openbmc_project::Inventory::Item::server::Cable:: 17 length(value); 18 } 19 20 std::string Cable::cableTypeDescription() const 21 { 22 return sdbusplus::xyz::openbmc_project::Inventory::Item::server::Cable:: 23 cableTypeDescription(); 24 } 25 26 std::string Cable::cableTypeDescription(std::string value) 27 { 28 return sdbusplus::xyz::openbmc_project::Inventory::Item::server::Cable:: 29 cableTypeDescription(value); 30 } 31 32 } // namespace dbus 33 34 } // namespace pldm 35