Arşivlenmiş
1
0
Bu depo arşivlendi. Dosyaları görüntüleyebilir ve klonlayabilirsiniz ama işleme gönderemez veya konu veya değişiklik isteği açamazsınız.
keybrd/src/Code.h

12 satır
216 B
C++

#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.
*/
class Code : public Key
{
};
#endif