blob: 41f135da38e52efd1925692f37f4ea51a684d0b6 [file] [log] [blame]
Matt Spinler852db672019-03-06 13:46:14 -06001#include "association_manager.hpp"
2
3namespace phosphor
4{
5namespace inventory
6{
7namespace manager
8{
9namespace associations
10{
11
12Manager::Manager(sdbusplus::bus::bus& bus, const std::string& jsonPath) :
13 _bus(bus), _jsonFile(jsonPath)
14{
15}
16
17void Manager::createAssociations(const std::string& objectPath)
18{
19 // TODO
20}
21} // namespace associations
22} // namespace manager
23} // namespace inventory
24} // namespace phosphor