1
This commit is contained in:
2022-07-16 01:01:05 +02:00
parent 15dd858d33
commit 3bd4a54aa2
5 changed files with 6 additions and 26 deletions

View File

@ -13,7 +13,7 @@
#include "kernel/Globals.h"
#include "kernel/threads/Thread.h"
#include "user/KeyEventListener.h"
#include "user/event/KeyEventListener.h"
class KeyboardDemo : public Thread {
private:
@ -24,7 +24,7 @@ private:
public:
KeyboardDemo() : listener(*this) {
kout << "Initialized KeyboardDemo" << endl;
kevman.subscribe(listener);
kevman.subscribe(this->listener);
}
void run() override;