mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-11 10:16:41 +00:00
17 lines
244 B
C++
17 lines
244 B
C++
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include "IRQHandler.h"
|
|
|
|
class Keyboard final : public IRQHandler {
|
|
public:
|
|
virtual ~Keyboard() override;
|
|
Keyboard();
|
|
|
|
private:
|
|
virtual void handleIRQ() override;
|
|
|
|
byte m_modifiers { 0 };
|
|
};
|
|
|