xref: /openbmc/phosphor-hwmon/hwmon.hpp (revision 0fcb8b3bbfd41829c787ee9a31b087d846e79cbc)
1 #pragma once
2 
3 #include <string>
4 
5 namespace hwmon
6 {
7 namespace entry
8 {
9 static constexpr auto cinput = "input";
10 static constexpr auto clabel = "label";
11 
12 static const std::string input = cinput;
13 static const std::string label = clabel;
14 }
15 
16 namespace type
17 {
18 static constexpr auto cfan = "fan";
19 static constexpr auto ctemp = "temp";
20 static constexpr auto cvolt = "in";
21 
22 static const std::string fan = cfan;
23 static const std::string temp = ctemp;
24 static const std::string volt = cvolt;
25 }
26 }
27 
28 // vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
29