2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
11 #include "utils/Temperature.h"
13 #include "platform/posix/CPUInfoPosix.h"
17 class CCPUInfoLinux
: public CCPUInfoPosix
21 ~CCPUInfoLinux() = default;
23 int GetUsedPercentage() override
;
24 float GetCPUFrequency() override
;
25 bool GetTemperature(CTemperature
& temperature
) override
;
28 std::string m_freqPath
;
29 std::string m_tempPath
;