blob: f41c53ef5acead12d4c52794b19eccad9d5e7ec6 [file] [log] [blame]
#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
// vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4