1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:27:35 +00:00

Kernel: Rename Keyboard to KeyboardDevice.

This commit is contained in:
Andreas Kling 2019-02-17 08:39:09 +01:00
parent 2dc0ef8813
commit 10b43f3d1d
6 changed files with 24 additions and 24 deletions

View file

@ -1,7 +1,7 @@
#pragma once
#include "TTY.h"
#include "Keyboard.h"
#include "KeyboardDevice.h"
#include "Console.h"
class VirtualConsole final : public TTY, public KeyboardClient, public ConsoleImplementation {
@ -17,7 +17,7 @@ public:
private:
// ^KeyboardClient
virtual void on_key_pressed(Keyboard::Event) override;
virtual void on_key_pressed(KeyboardDevice::Event) override;
// ^ConsoleImplementation
virtual void on_sysconsole_receive(byte) override;