blob: 2e7fe33c2a0ac7cca30230bd291c298b8c1555d0 [file] [log] [blame]
Deepak Kodihalli82c1e562016-11-28 06:06:50 -06001#pragma once
2
3#include <string>
4#include <store.hpp>
5
6namespace openpower
7{
8namespace vpd
9{
10namespace inventory
11{
12
13/** @brief API to write parsed VPD to inventory
14 *
15 * @param [in] type - FRU type
16 * @param [in] vpdStore - Store object containing parsed VPD
17 * @param [in] path - FRU object path
18 */
19void write(const std::string& type,
20 const Store& vpdStore,
21 const std::string& path);
22
23} // inventory
24} // namespace vpd
25} // namespace openpower