1# IInputInterface 2 3 4## **概述** 5 6定义用于提供Input设备驱动程序功能的接口。 7 8**相关模块:** 9 10[Input](input.md) 11 12 13## **汇总** 14 15 16### Public 属性 17 18 | 名称 | 描述 | 19| -------- | -------- | 20| [iInputManager](#iinputmanager) | Input设备的设备管理接口 | 21| [iInputController](#iinputcontroller) | Input设备的业务控制接口 | 22| [iInputReporter](#iinputreporter) | Input设备的数据上报接口 | 23 24 25## **类成员变量说明** 26 27 28### iInputController 29 30 31``` 32InputController* IInputInterface::iInputController 33``` 34 35**描述:** 36 37Input设备的业务控制接口 38 39 40### iInputManager 41 42 43``` 44InputManager* IInputInterface::iInputManager 45``` 46 47**描述:** 48 49Input设备的设备管理接口 50 51 52### iInputReporter 53 54 55``` 56InputReporter* IInputInterface::iInputReporter 57``` 58 59**描述:** 60 61Input设备的数据上报接口 62