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 "platform/posix/CPUInfoPosix.h"
12 #include "platform/posix/filesystem/PosixFile.h"
16 using namespace XFILE
;
18 class CCPUInfoAndroid
: public CCPUInfoPosix
22 ~CCPUInfoAndroid() = default;
24 bool SupportsCPUUsage() const override
{ return false; }
25 int GetUsedPercentage() override
{ return 0; }
26 float GetCPUFrequency() override
;
29 std::unique_ptr
<CPosixFile
> m_posixFile
;