blob: ec22258664d4c113c6d0aa465138a7dd0ad84d28 [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 */
Patrick Williams9b18bf22022-07-22 19:26:55 -050019void loadExtensions(sdbusplus::bus_t& bus, DumpManagerList& dumpMgrList);
Dhruvaraj Subhashchandran8b9b4692020-09-24 11:59:42 -050020} // namespace dump
21} // namespace phosphor