blob: ec22258664d4c113c6d0aa465138a7dd0ad84d28 [file] [log] [blame]
#include "dump_manager.hpp"
#include <memory>
#include <vector>
namespace phosphor
{
namespace dump
{
using DumpManagerList = std::vector<std::unique_ptr<phosphor::dump::Manager>>;
/**
* @brief load the dump extensions
*
* @param[in] bus - Bus to attach to
* @param[out] dumpMgrList - list dump manager objects.
*
*/
void loadExtensions(sdbusplus::bus_t& bus, DumpManagerList& dumpMgrList);
} // namespace dump
} // namespace phosphor