1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-08 15:29:09 +00:00
CLK/OSBindings/Qt/keyboard.h
Thomas Harte 4858cfce6b Starts to factor out the keyboard mapper.
The more easily to clarify as to #includes, etc, and to allow for a relevant constructor.
2021-05-05 18:56:10 -04:00

16 lines
219 B
C++

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