kodi
PVRComponentRegistration.h
1 /*
2  * Copyright (C) 2022 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/IPVRComponent.h"
12 #include "utils/ComponentContainer.h"
13 
14 namespace PVR
15 {
16 class CPVRComponentRegistration : public CComponentContainer<IPVRComponent>
17 {
18 public:
20  virtual ~CPVRComponentRegistration();
21 };
22 } // namespace PVR
Definition: ContextMenuManager.h:24
A generic container for components.
Definition: ServiceBroker.h:55
Definition: PVRComponentRegistration.h:16