blob: e566cec39a089a46d186499b4bbc729e00bfdc96 [file] [log] [blame]
Deepak Kodihallibe051072017-02-20 01:15:34 -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 source. Do not edit!
4
5#include "types.hpp"
6
7using namespace ipmi::vpd;
8
9extern const std::map<Path, InterfaceMap> extras = {
Patrick Williams5098b032017-06-01 15:40:10 -050010% for path in dict.keys():
Deepak Kodihallibe051072017-02-20 01:15:34 -060011<%
12 interfaces = dict[path]
13%>\
14 {"${path}",{
Patrick Williams5098b032017-06-01 15:40:10 -050015 % for interface,properties in interfaces.items():
Deepak Kodihallibe051072017-02-20 01:15:34 -060016 {"${interface}",{
Patrick Williams5098b032017-06-01 15:40:10 -050017 % for property,value in properties.items():
Deepak Kodihallibe051072017-02-20 01:15:34 -060018 {"${property}", ${value}},
19 % endfor
20 }},
21 % endfor
22 }},
23% endfor
24};