[Windows] Fix driver version detection of AMD RDNA+ GPU on Windows 10
[xbmc.git] / xbmc / pvr / dialogs / GUIDialogPVRChannelGuide.h
blob2835c90f595659a4ccf2619e5f84a259204fb13c
1 /*
2 * Copyright (C) 2012-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 "pvr/dialogs/GUIDialogPVRItemsViewBase.h"
13 #include <memory>
15 namespace PVR
17 class CPVRChannel;
19 class CGUIDialogPVRChannelGuide : public CGUIDialogPVRItemsViewBase
21 public:
22 CGUIDialogPVRChannelGuide();
23 ~CGUIDialogPVRChannelGuide() override = default;
25 void Open(const std::shared_ptr<const CPVRChannel>& channel);
27 protected:
28 void OnInitWindow() override;
29 void OnDeinitWindow(int nextWindowID) override;
31 private:
32 std::shared_ptr<const CPVRChannel> m_channel;