blob: b5fac53a37d12e838a1c00e7b42194ede2cac7d5 [file] [log] [blame]
Vishwanatha Subbanna6add0b82017-07-21 19:02:37 +05301## 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
6#pragma once
7
8#include <map>
9
10namespace open_power
11{
12namespace occ
13{
14
15using instanceID = int;
16using sensorID = uint8_t;
17const std::map<instanceID, sensorID> Status::sensorMap = {
18\
19% for occ in occDict:
20<%
21 instance = occ.get("Instance")
22 id = occ.get("SensorID")
23%>\
24\
25 { ${instance}, ${id} },\
26
27% endfor
28};
29
30} // namespace occ
31} // namespace open_power