blob: 6b006c2d3fb0728de92f77a048f77631ca79af25 [file] [log] [blame]
Deepak Kodihallibdfd1232017-02-17 00:29:02 -06001## This file is a template. The comment below is emitted
2## into the rendered file; feel free to edit this file.
3// WARNING: Generated header. Do not edit!
4
5#pragma once
6
7#include <string>
8#include <map>
9#include "types.hpp"
10
11namespace openpower
12{
13namespace vpd
14{
15namespace inventory
16{
17namespace extra
18{
19
20const std::map<Path, InterfaceMap> objects = {
21% for path in dict.iterkeys():
22<%
23 interfaces = dict[path]
24%>\
25 {"${path}",{
26 % for interface,properties in interfaces.iteritems():
27 {"${interface}",{
28 % for property,value in properties.iteritems():
29 {"${property}", ${value}},
30 % endfor
31 }},
32 % endfor
33 }},
34% endfor
35};
36
37} // namespace extra
38} // namespace inventory
39} // namespace vpd
40} // namespace openpower