]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - protocol/usb_hid/parser.h
Merge branch 'modstaptoggle' of git://github.com/simonmelhart/tmk_keyboard into simon...
[max/tmk_keyboard.git] / protocol / usb_hid / parser.h
1 #ifndef PARSER_H
2 #define PARSER_H
3
4 #include "hid.h"
5
6 class KBDReportParser : public HIDReportParser
7 {
8 public:
9         virtual void Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
10 };
11
12 #endif