blob: ad5b68832d4e798561593c8f88eaeeb3c6976e74 [file] [log] [blame]
Dhruvaraj Subhashchandran8b9b4692020-09-24 11:59:42 -05001#include "dump_manager.hpp"
2
3#include <memory>
4#include <vector>
5
6namespace phosphor
7{
8namespace dump
9{
10
11using DumpManagerList = std::vector<std::unique_ptr<phosphor::dump::Manager>>;
12/**
13 * @brief load the dump extensions
14 *
15 * @param[in] bus - Bus to attach to
16 * @param[out] dumpMgrList - list dump manager objects.
17 *
18 */
19void loadExtensions(sdbusplus::bus::bus& bus, DumpManagerList& dumpMgrList);
20} // namespace dump
21} // namespace phosphor