blob: a19aa341ed96fd939ba89c9492117e1811dba799 [file] [log] [blame]
Brad Bishop26b815f2017-01-04 13:32:47 -05001#pragma once
Patrick Williams3667cf32015-10-20 22:39:11 -05002
3#include <string>
4
5namespace hwmon
6{
Brad Bishop6bb97a92016-12-19 13:06:40 -05007using namespace std::literals;
Patrick Williams3667cf32015-10-20 22:39:11 -05008
Brad Bishop6bb97a92016-12-19 13:06:40 -05009namespace entry
10{
11static const std::string input = "input"s;
Brad Bishop6e8f6232017-01-04 15:39:03 -050012static const std::string label = "label"s;
Brad Bishop6bb97a92016-12-19 13:06:40 -050013}
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
Brad Bishop03476f12016-12-19 13:09:12 -050023// vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4