xbmc
GUIFeatureControls.h
1 /*
2  * Copyright (C) 2016-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 "guilib/GUIImage.h"
12 #include "guilib/GUILabelControl.h"
13 
14 #include <string>
15 
16 namespace KODI
17 {
18 namespace GAME
19 {
24 {
25 public:
26  CGUIFeatureGroupTitle(const CGUILabelControl& groupTitleTemplate,
27  const std::string& groupName,
28  unsigned int buttonIndex);
29 
30  ~CGUIFeatureGroupTitle() override = default;
31 };
32 
37 {
38 public:
39  CGUIFeatureSeparator(const CGUIImage& separatorTemplate, unsigned int buttonIndex);
40 
41  ~CGUIFeatureSeparator() override = default;
42 };
43 } // namespace GAME
44 } // namespace KODI
Definition: GUIFeatureControls.h:23
Definition: GUIFeatureControls.h:36
Definition: GUILabelControl.h:24
Definition: AudioDecoder.h:18
Definition: GUIImage.h:27