1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-17 13:29:02 +00:00
CLK/OSBindings/Qt/keyboard.h

16 lines
219 B
C
Raw Normal View History

#ifndef KEYBOARD_H
#define KEYBOARD_H
#include <QMainWindow>
class KeyboardMapper {
public:
KeyboardMapper();
std::optional<Inputs::Keyboard::Key> keyForEvent(QKeyEvent *);
private:
};
#endif // MAINWINDOW_H