blob: 000f758556ed23b00a68228a7ed2d0a5886152ae [file] [log] [blame]
Tom Josephdd78a1d2017-05-05 11:04:29 +05301## This file is a template. The comment below is emitted
2## into the rendered file; feel free to edit this file.
3
4// !!! WARNING: This is a GENERATED Code..Please do NOT Edit !!!
5
6#include "types.hpp"
7using namespace ipmi::sensor;
8
9extern const InvObjectIDMap invSensors = {
10% for key in sensorDict.iterkeys():
11 % if key:
12{"${key}",
13 {
14<%
15 objectPath = sensorDict[key]
16 sensorID = objectPath["sensorID"]
17 sensorType = objectPath["sensorType"]
18 eventReadingType = objectPath["eventReadingType"]
19 offset = objectPath["offset"]
20%>
21 ${sensorID},${sensorType},${eventReadingType},${offset}
22 }
23},
24 % endif
25% endfor
26};
27