blob: 2e7fe33c2a0ac7cca30230bd291c298b8c1555d0 [file] [log] [blame]
#pragma once
#include <string>
#include <store.hpp>
namespace openpower
{
namespace vpd
{
namespace inventory
{
/** @brief API to write parsed VPD to inventory
*
* @param [in] type - FRU type
* @param [in] vpdStore - Store object containing parsed VPD
* @param [in] path - FRU object path
*/
void write(const std::string& type,
const Store& vpdStore,
const std::string& path);
} // inventory
} // namespace vpd
} // namespace openpower