アーカイブ
1
0
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
keybrd/src/Code.h

12 行
216 B
C
Raw パーマリンク 通常表示 履歴

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