1 #pragma once
2 #include <memory>
3 #include <sdbusplus/bus.hpp>
4 
5 namespace phosphor::network
6 {
7 
8 class Manager;
9 
10 namespace inventory
11 {
12 
13 struct Runtime
14 {
15     virtual ~Runtime() = default;
16 };
17 std::unique_ptr<Runtime> watch(sdbusplus::bus_t& bus, Manager& m);
18 
19 } // namespace inventory
20 } // namespace phosphor::network
21