blob: 505c62518c5f6177667d5fe2c783788d90366f00 [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