summaryrefslogtreecommitdiff
path: root/Source/Kernel/Devices/Keyboard/Keyboard.proto.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Kernel/Devices/Keyboard/Keyboard.proto.h')
-rw-r--r--Source/Kernel/Devices/Keyboard/Keyboard.proto.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/Kernel/Devices/Keyboard/Keyboard.proto.h b/Source/Kernel/Devices/Keyboard/Keyboard.proto.h
new file mode 100644
index 0000000..d6898f8
--- /dev/null
+++ b/Source/Kernel/Devices/Keyboard/Keyboard.proto.h
@@ -0,0 +1,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