[videodb] remove unused seasons table from episode_view
[xbmc.git] / xbmc / platform / posix / GPUInfoPosix.h
blobb03914e73f886b36fb521d43267debb3be8d606c
1 /*
2 * Copyright (C) 2023 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/GpuInfo.h"
13 class CGPUInfoPosix : public CGPUInfo
15 protected:
16 CGPUInfoPosix() = default;
17 virtual ~CGPUInfoPosix() = default;
19 virtual bool SupportsCustomTemperatureCommand() const override;
20 virtual bool GetGPUTemperatureFromCommand(CTemperature& temperature,
21 const std::string& cmd) const override;