1 #pragma once 2 3 /* const expressions shared in this repository */ 4 5 constexpr auto ASSOCIATION_IFACE = "xyz.openbmc_project.Association"; 6 constexpr auto LOGGING_IFACE = "xyz.openbmc_project.Logging.Entry"; 7 constexpr auto INVENTORY_IFACE = "xyz.openbmc_project.Inventory.Item"; 8 constexpr auto POWER_IFACE = "org.openbmc.control.Power"; 9 constexpr auto INVENTORY_MGR_IFACE = "xyz.openbmc_project.Inventory.Manager"; 10 constexpr auto ASSET_IFACE = "xyz.openbmc_project.Inventory.Decorator.Asset"; 11 constexpr auto VERSION_IFACE = "xyz.openbmc_project.Software.Version"; 12 constexpr auto PSU_INVENTORY_IFACE = 13 "xyz.openbmc_project.Inventory.Item.PowerSupply"; 14 15 constexpr auto ENDPOINTS_PROP = "endpoints"; 16 constexpr auto MESSAGE_PROP = "Message"; 17 constexpr auto RESOLVED_PROP = "Resolved"; 18 constexpr auto PRESENT_PROP = "Present"; 19 constexpr auto VERSION_PURPOSE_PROP = "Purpose"; 20 21 constexpr auto INVENTORY_OBJ_PATH = "/xyz/openbmc_project/inventory"; 22 constexpr auto POWER_OBJ_PATH = "/org/openbmc/control/power0"; 23 24 constexpr auto INPUT_HISTORY = "input_history"; 25