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 {
17   class CGUIWindowPVRTVTimers : public CGUIWindowPVRTimersBase
18   {
19   public:
20     CGUIWindowPVRTVTimers();
21 
22   protected:
23     std::string GetDirectoryPath() override;
24   };
25 
26   class CGUIWindowPVRRadioTimers : public CGUIWindowPVRTimersBase
27   {
28   public:
29     CGUIWindowPVRRadioTimers();
30 
31   protected:
32     std::string GetDirectoryPath() override;
33   };
34 }
35