[PVR][Estuary] Timer settings dialog: Show client name in timer type selection dialog...
[xbmc.git] / xbmc / platform / linux / CPUInfoLinux.h
blobed79afc5b6333cb37dfff1199a6570375c0c43b5
1 /*
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.
7 */
9 #pragma once
11 #include "utils/Temperature.h"
13 #include "platform/posix/CPUInfoPosix.h"
15 #include <string>
17 class CCPUInfoLinux : public CCPUInfoPosix
19 public:
20 CCPUInfoLinux();
21 ~CCPUInfoLinux() = default;
23 int GetUsedPercentage() override;
24 float GetCPUFrequency() override;
25 bool GetTemperature(CTemperature& temperature) override;
27 private:
28 std::string m_freqPath;
29 std::string m_tempPath;