This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2012-08-25 06:49:08 +00:00
|
|
|
#ifndef PARSER_H
|
|
|
|
#define PARSER_H
|
|
|
|
|
2012-08-13 15:17:31 +00:00
|
|
|
#include "hid.h"
|
|
|
|
|
|
|
|
class KBDReportParser : public HIDReportParser
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
|
|
|
|
};
|
2012-08-25 06:49:08 +00:00
|
|
|
|
|
|
|
#endif
|