#pragma once #include #include namespace phosphor::network { class Manager; namespace inventory { struct Runtime { virtual ~Runtime() = default; }; std::unique_ptr watch(sdbusplus::bus_t& bus, Manager& m); } // namespace inventory } // namespace phosphor::network