kodi
GUIWindowPVRTimerRules.h
1 /*
2  * Copyright (C) 2012-2018 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include "pvr/windows/GUIWindowPVRTimersBase.h"
12 
13 #include <string>
14 
15 namespace PVR
16 {
18  {
19  public:
21  ~CGUIWindowPVRTVTimerRules() override = default;
22 
23  protected:
24  std::string GetRootPath() const override;
25  std::string GetDirectoryPath() override;
26  };
27 
29  {
30  public:
32  ~CGUIWindowPVRRadioTimerRules() override = default;
33 
34  protected:
35  std::string GetRootPath() const override;
36  std::string GetDirectoryPath() override;
37  };
38 }
Definition: ContextMenuManager.h:24
Definition: GUIWindowPVRTimerRules.h:17
Definition: GUIWindowPVRTimersBase.h:19
Definition: GUIWindowPVRTimerRules.h:28