blob: 4b690ab53dd4b46be5e8bc9abfcdc72d5af8d6ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#pragma once
#include "types.hpp"
namespace openpower
{
namespace vpd
{
namespace inventory
{
/** @brief Get inventory-manager's d-bus service
*/
auto getPIMService();
/** @brief Call inventory-manager to add objects
*
* @param [in] objects - Map of inventory object paths
*/
void callPIM(ObjectMap&& objects);
} // namespace inventory
} // namespace vpd
} // namespace openpower
|