blob: c82204532c5919c89d3b6e5b638a7e9edf33a967 [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;
12}
Patrick Williams3667cf32015-10-20 22:39:11 -050013
Brad Bishop6bb97a92016-12-19 13:06:40 -050014namespace type
15{
16static const std::string fan = "fan"s;
17static const std::string temp = "temp"s;
18static const std::string volt = "in"s;
19}
Patrick Williams3667cf32015-10-20 22:39:11 -050020}
21
Brad Bishop03476f12016-12-19 13:09:12 -050022// vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4