Matt Spinler | 852db67 | 2019-03-06 13:46:14 -0600 | [diff] [blame^] | 1 | #include "association_manager.hpp" |
2 | |||||
3 | namespace phosphor | ||||
4 | { | ||||
5 | namespace inventory | ||||
6 | { | ||||
7 | namespace manager | ||||
8 | { | ||||
9 | namespace associations | ||||
10 | { | ||||
11 | |||||
12 | Manager::Manager(sdbusplus::bus::bus& bus, const std::string& jsonPath) : | ||||
13 | _bus(bus), _jsonFile(jsonPath) | ||||
14 | { | ||||
15 | } | ||||
16 | |||||
17 | void Manager::createAssociations(const std::string& objectPath) | ||||
18 | { | ||||
19 | // TODO | ||||
20 | } | ||||
21 | } // namespace associations | ||||
22 | } // namespace manager | ||||
23 | } // namespace inventory | ||||
24 | } // namespace phosphor |