Archived
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
keybrd/src/Code.h

12 lines
216 B
C
Raw Permalink Normal View History

2016-05-09 14:05:08 +00:00
#ifndef CODE_H
#define CODE_H
#include "Key.h"
/* Code is an abstract base class.
Each Code object contains one USB scancode and sends the scancode to the computer.
2016-05-09 14:05:08 +00:00
*/
class Code : public Key
{
};
#endif