summaryrefslogtreecommitdiffstats
path: root/hwmon.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'hwmon.hpp')
-rw-r--r--hwmon.hpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/hwmon.hpp b/hwmon.hpp
new file mode 100644
index 0000000..494d38e
--- /dev/null
+++ b/hwmon.hpp
@@ -0,0 +1,23 @@
+#ifndef __HWMON_H
+#define __HWMON_H
+
+#include <string>
+
+namespace hwmon
+{
+ using namespace std::literals;
+
+ namespace entry
+ {
+ static const std::string input = "input"s;
+ }
+
+ namespace type
+ {
+ static const std::string fan = "fan"s;
+ static const std::string temp = "temp"s;
+ static const std::string volt = "in"s;
+ }
+}
+
+#endif
OpenPOWER on IntegriCloud