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