[video] Fix the refresh of movies with additional versions or extras
[xbmc.git] / xbmc / platform / win10 / CPUInfoWin10.h
blobdc924901931b82896787b201819edd11f57135ca
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/CPUInfo.h"
12 #include "utils/Temperature.h"
14 class CCPUInfoWin10 : public CCPUInfo
16 public:
17 CCPUInfoWin10();
18 ~CCPUInfoWin10() = default;
20 int GetUsedPercentage() override;
21 float GetCPUFrequency() override { return 0; }
22 bool GetTemperature(CTemperature& temperature) override;