diff options
Diffstat (limited to '')
-rw-r--r-- | xbmc/peripherals/devices/PeripheralNyxboard.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/xbmc/peripherals/devices/PeripheralNyxboard.h b/xbmc/peripherals/devices/PeripheralNyxboard.h new file mode 100644 index 0000000..f81c3ef --- /dev/null +++ b/xbmc/peripherals/devices/PeripheralNyxboard.h @@ -0,0 +1,24 @@ +/* + * 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. + */ + +#pragma once + +#include "PeripheralHID.h" + +namespace PERIPHERALS +{ +class CPeripheralNyxboard : public CPeripheralHID +{ +public: + CPeripheralNyxboard(CPeripherals& manager, + const PeripheralScanResult& scanResult, + CPeripheralBus* bus); + ~CPeripheralNyxboard(void) override = default; + bool LookupSymAndUnicode(XBMC_keysym& keysym, uint8_t* key, char* unicode) override; +}; +} // namespace PERIPHERALS |