Monitor : add constant for service name
Add a symbolic constant for Inventory Service. Although its value
happens to be the same as its interface, only having one constant allows
it to be used in ways that can cause confusion when reading the code.
Signed-off-by: Mike Capps <mikepcapps@gmail.com>
Change-Id: Ib97d7977a17c10be6ee874f6fe83865c58b50885
diff --git a/utility.hpp b/utility.hpp
index ac1ebbc..2afd48e 100644
--- a/utility.hpp
+++ b/utility.hpp
@@ -27,6 +27,7 @@
constexpr auto INVENTORY_PATH = "/xyz/openbmc_project/inventory";
constexpr auto INVENTORY_INTF = "xyz.openbmc_project.Inventory.Manager";
+constexpr auto INVENTORY_SVC = "xyz.openbmc_project.Inventory.Manager";
constexpr auto OPERATIONAL_STATUS_INTF =
"xyz.openbmc_project.State.Decorator.OperationalStatus";