This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2016-05-09 14:05:08 +00:00
|
|
|
#ifndef CODE_H
|
|
|
|
#define CODE_H
|
|
|
|
#include "Key.h"
|
|
|
|
|
2016-09-17 21:47:37 +00:00
|
|
|
/* 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
|