xref: /openbmc/phosphor-hwmon/hwmon.hpp (revision 03476f11e9862cd9436147aa22d6a06f9f09e2f4)
1 #ifndef __HWMON_H
2 #define __HWMON_H
3 
4 #include <string>
5 
6 namespace hwmon
7 {
8 using namespace std::literals;
9 
10 namespace entry
11 {
12 static const std::string input = "input"s;
13 }
14 
15 namespace type
16 {
17 static const std::string fan = "fan"s;
18 static const std::string temp = "temp"s;
19 static const std::string volt = "in"s;
20 }
21 }
22 
23 #endif
24 
25 // vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
26