diff options
Diffstat (limited to 'Kernel/Devices/KeyboardDevice.h')
-rw-r--r-- | Kernel/Devices/KeyboardDevice.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Kernel/Devices/KeyboardDevice.h b/Kernel/Devices/KeyboardDevice.h index a2c9b4e3a3..f25b47cf5d 100644 --- a/Kernel/Devices/KeyboardDevice.h +++ b/Kernel/Devices/KeyboardDevice.h @@ -33,6 +33,8 @@ #include <AK/Types.h> #include <Kernel/Devices/CharacterDevice.h> +namespace Kernel { + class KeyboardClient; class KeyboardDevice final : public IRQHandler @@ -84,3 +86,5 @@ public: virtual ~KeyboardClient(); virtual void on_key_pressed(KeyboardDevice::Event) = 0; }; + +} |