xbmc
IHardwareInput.h
1 /*
2  * Copyright (C) 2017-2018 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 <string>
12 
13 namespace KODI
14 {
15 namespace HARDWARE
16 {
22 {
23 public:
24  virtual ~IHardwareInput() = default;
25 
29  virtual void OnResetButton() = 0;
30 };
31 } // namespace HARDWARE
32 } // namespace KODI
virtual void OnResetButton()=0
A hardware reset button has been pressed.
Definition: AudioDecoder.h:18
Handles events for hardware such as reset buttons on a game console.
Definition: IHardwareInput.h:21