kodi
CPUInfoWin10.h
1 /*
2  * Copyright (C) 2005-2018 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include "utils/CPUInfo.h"
12 #include "utils/Temperature.h"
13 
14 class CCPUInfoWin10 : public CCPUInfo
15 {
16 public:
17  CCPUInfoWin10();
18  ~CCPUInfoWin10() = default;
19 
20  int GetUsedPercentage() override;
21  float GetCPUFrequency() override { return 0; }
22  bool GetTemperature(CTemperature& temperature) override;
23 };
Definition: CPUInfoWin10.h:14
Definition: CPUInfo.h:44
Definition: Temperature.h:15