| #include <sdbusplus/bus.hpp> |
| #include <sdbusplus/server.hpp> |
| #include <sdbusplus/server/object.hpp> |
| #include <xyz/openbmc_project/Inventory/Item/Board/Motherboard/server.hpp> |
| sdbusplus::server::object_t<sdbusplus::xyz::openbmc_project::Inventory:: |
| Item::Board::server::Motherboard>; |
| * @brief This class is mapped to Inventory.Item.Board.Motherboard properties |
| * in D-Bus interface path. |
| class Motherboard : public ItemMotherboard |
| ~Motherboard() = default; |
| Motherboard(const Motherboard&) = delete; |
| Motherboard& operator=(const Motherboard&) = delete; |
| Motherboard(Motherboard&&) = delete; |
| Motherboard& operator=(Motherboard&&) = delete; |
| Motherboard(sdbusplus::bus_t& bus, const std::string& objPath) : |
| ItemMotherboard(bus, objPath.c_str()) |