summaryrefslogtreecommitdiffstats
path: root/xbmc/platform/linux/CPUInfoLinux.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/platform/linux/CPUInfoLinux.h')
-rw-r--r--xbmc/platform/linux/CPUInfoLinux.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/xbmc/platform/linux/CPUInfoLinux.h b/xbmc/platform/linux/CPUInfoLinux.h
new file mode 100644
index 0000000..ed79afc
--- /dev/null
+++ b/xbmc/platform/linux/CPUInfoLinux.h
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2005-2018 Team Kodi
+ * This file is part of Kodi - https://kodi.tv
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ * See LICENSES/README.md for more information.
+ */
+
+#pragma once
+
+#include "utils/Temperature.h"
+
+#include "platform/posix/CPUInfoPosix.h"
+
+#include <string>
+
+class CCPUInfoLinux : public CCPUInfoPosix
+{
+public:
+ CCPUInfoLinux();
+ ~CCPUInfoLinux() = default;
+
+ int GetUsedPercentage() override;
+ float GetCPUFrequency() override;
+ bool GetTemperature(CTemperature& temperature) override;
+
+private:
+ std::string m_freqPath;
+ std::string m_tempPath;
+};