1 #pragma once
2 
3 #include <sdbusplus/bus.hpp>
4 
5 namespace phosphor
6 {
7 namespace fan
8 {
9 namespace presence
10 {
11 
12 /**
13  * @brief Get the inventory service name from the mapper object
14  *
15  * @return The inventory manager service name
16  */
17 std::string getInvService(sdbusplus::bus::bus& bus);
18 
19 }
20 }
21 }
22