mirror of
https://github.com/fergalmoran/ferglos.git
synced 2025-12-22 09:28:22 +00:00
15 lines
368 B
C++
15 lines
368 B
C++
#ifndef __FERGLOS_DRIVERS_ECHOKEYBOARDHANDLER_H
|
|
#define __FERGLOS_DRIVERS_ECHOKEYBOARDHANDLER_H
|
|
#include <common/stdio.h>
|
|
#include <drivers/keyboard.h>
|
|
|
|
namespace ferglos {
|
|
namespace drivers {
|
|
|
|
class EchoKeyboardHandler : public KeyboardEventHandler {
|
|
public:
|
|
virtual void OnKeyDown(const wchar_t* key);
|
|
};
|
|
} // namespace drivers
|
|
} // namespace ferglos
|
|
#endif |