]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/protocol/usb_hid/parser.h
Do some cleanup for the API
[qmk_firmware.git] / tmk_core / protocol / usb_hid / parser.h
1 #ifndef PARSER_H
2 #define PARSER_H
3
4 #include "hid.h"
5 #include "report.h"
6
7 class KBDReportParser : public HIDReportParser
8 {
9 public:
10     report_keyboard_t report;
11     uint16_t time_stamp;
12     virtual void Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
13 };
14
15 #endif