diff options
Diffstat (limited to 'xbmc/peripherals/devices/PeripheralTuner.cpp')
-rw-r--r-- | xbmc/peripherals/devices/PeripheralTuner.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/xbmc/peripherals/devices/PeripheralTuner.cpp b/xbmc/peripherals/devices/PeripheralTuner.cpp new file mode 100644 index 0000000..770656d --- /dev/null +++ b/xbmc/peripherals/devices/PeripheralTuner.cpp @@ -0,0 +1,19 @@ +/* + * Copyright (C) 2005-2018 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#include "PeripheralTuner.h" + +using namespace PERIPHERALS; + +CPeripheralTuner::CPeripheralTuner(CPeripherals& manager, + const PeripheralScanResult& scanResult, + CPeripheralBus* bus) + : CPeripheral(manager, scanResult, bus) +{ + m_features.push_back(FEATURE_TUNER); +} |