From a356e4815098e5398e103aa69865bd6c88f7ad36 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 16 Feb 2020 01:27:42 +0100 Subject: Kernel: Move all code into the Kernel namespace --- Kernel/Devices/KeyboardDevice.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Kernel/Devices/KeyboardDevice.h') 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 #include +namespace Kernel { + class KeyboardClient; class KeyboardDevice final : public IRQHandler @@ -84,3 +86,5 @@ public: virtual ~KeyboardClient(); virtual void on_key_pressed(KeyboardDevice::Event) = 0; }; + +} -- cgit v1.2.3