blob: bfb67aa14b53ecedf5d09a80786d0a6e24c5f5dd [file] [log] [blame]
#include "hwmon.hpp"
namespace hwmon
{
bool getAttributes(const std::string& type, Attributes& attributes)
{
// clang-format off
auto a =
std::find_if(
typeAttrMap.begin(),
typeAttrMap.end(),
[&](const auto& e)
{
return type == getHwmonType(e);
});
// clang-format on
if (a == typeAttrMap.end())
{
return false;
}
attributes = *a;
return true;
}
} // namespace hwmon