xbmc
ButtonStat.h
1 /*
2  * Copyright (C) 2020 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 "input/Key.h"
12 #include "input/XBMC_keyboard.h"
13 
14 #include <string>
15 
16 namespace KODI
17 {
18 namespace INPUT
19 {
20 
22 {
23 public:
24  CButtonStat();
25  ~CButtonStat() = default;
26 
27  CKey TranslateKey(const CKey& key) const;
28 };
29 } // namespace INPUT
30 } // namespace KODI
Definition: ButtonStat.h:21
Definition: AudioDecoder.h:18
Definition: Key.h:135