blob: f41c53ef5acead12d4c52794b19eccad9d5e7ec6 [file] [log] [blame]
Patrick Williams3667cf32015-10-20 22:39:11 -05001#ifndef __HWMON_H
2#define __HWMON_H
3
4#include <string>
5
6namespace hwmon
7{
Brad Bishop6bb97a92016-12-19 13:06:40 -05008using namespace std::literals;
Patrick Williams3667cf32015-10-20 22:39:11 -05009
Brad Bishop6bb97a92016-12-19 13:06:40 -050010namespace entry
11{
12static const std::string input = "input"s;
13}
Patrick Williams3667cf32015-10-20 22:39:11 -050014
Brad Bishop6bb97a92016-12-19 13:06:40 -050015namespace type
16{
17static const std::string fan = "fan"s;
18static const std::string temp = "temp"s;
19static const std::string volt = "in"s;
20}
Patrick Williams3667cf32015-10-20 22:39:11 -050021}
22
23#endif
Brad Bishop03476f12016-12-19 13:09:12 -050024
25// vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4