diff options
Diffstat (limited to 'Kernel/Devices/KeyboardDevice.h')
-rw-r--r-- | Kernel/Devices/KeyboardDevice.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Kernel/Devices/KeyboardDevice.h b/Kernel/Devices/KeyboardDevice.h index c6e9fa972e..16f134b2a7 100644 --- a/Kernel/Devices/KeyboardDevice.h +++ b/Kernel/Devices/KeyboardDevice.h @@ -1,15 +1,16 @@ #pragma once -#include <AK/Types.h> -#include <AK/DoublyLinkedList.h> -#include <AK/CircularQueue.h> -#include <Kernel/Devices/CharacterDevice.h> #include "IRQHandler.h" #include "KeyCode.h" +#include <AK/CircularQueue.h> +#include <AK/DoublyLinkedList.h> +#include <AK/Types.h> +#include <Kernel/Devices/CharacterDevice.h> class KeyboardClient; -class KeyboardDevice final : public IRQHandler, public CharacterDevice { +class KeyboardDevice final : public IRQHandler + , public CharacterDevice { AK_MAKE_ETERNAL public: using Event = KeyEvent; |