From df1b7cfc395e2e48c9924186a6127d06a77541ea Mon Sep 17 00:00:00 2001 From: Matt Spinler Date: Tue, 31 Oct 2017 14:17:23 -0500 Subject: Add getBusName() utility function to SDBusPlus Add a function to SDBusPlus to get the D-Bus bus name for an object path and interface. Change-Id: I7d7a533c7430fcf42e1e0f6a21a2453e6c8197ea Signed-off-by: Matt Spinler --- src/data_types.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/data_types.hpp') diff --git a/src/data_types.hpp b/src/data_types.hpp index 5eab4b2..21f2ecf 100644 --- a/src/data_types.hpp +++ b/src/data_types.hpp @@ -13,6 +13,10 @@ namespace dbus namespace monitoring { +constexpr auto MAPPER_BUSNAME = "xyz.openbmc_project.ObjectMapper"; +constexpr auto MAPPER_PATH = "/xyz/openbmc_project/object_mapper"; +constexpr auto MAPPER_INTERFACE = "xyz.openbmc_project.ObjectMapper"; + /** @brief A map with references as keys. */ template using RefKeyMap = std::map, Value, std::less>; -- cgit v1.2.1