12 lines
216 B
C++
12 lines
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
|