blob: d6898f843c7a25ca304a581033145d303fff4430 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef DEF_KEYBOARD_PROTO_H
#define DEF_KEYBOARD_PROTO_H
#include <Devices/Device.proto.h>
class Keyboard : public Device {
public:
virtual void updateLeds(u32int kbdstatus) = 0;
};
#endif
|