diff options
Diffstat (limited to '')
-rw-r--r-- | xbmc/input/keyboard/KeymapActionMap.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/xbmc/input/keyboard/KeymapActionMap.h b/xbmc/input/keyboard/KeymapActionMap.h new file mode 100644 index 0000000..6ee9344 --- /dev/null +++ b/xbmc/input/keyboard/KeymapActionMap.h @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2017-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 "input/keyboard/interfaces/IActionMap.h" + +namespace KODI +{ +namespace KEYBOARD +{ +class CKeymapActionMap : public IActionMap +{ +public: + CKeymapActionMap(void) = default; + + ~CKeymapActionMap(void) override = default; + + // implementation of IActionMap + unsigned int GetActionID(const CKey& key) override; +}; +} // namespace KEYBOARD +} // namespace KODI |