1 #pragma once 2 3 #include <string> 4 5 namespace hwmon 6 { 7 using namespace std::literals; 8 9 namespace entry 10 { 11 static const std::string input = "input"s; 12 static const std::string label = "label"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 // vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 24