blob: 494d38e4d1f3827644696c329280d524a175eb80 [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