mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 16:04:59 +00:00
23 lines
456 B
C++
23 lines
456 B
C++
|
//
|
||
|
// KeyboardMapper.hpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 10/10/2017.
|
||
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef Machines_Oric_KeyboardMapper_hpp
|
||
|
#define Machines_Oric_KeyboardMapper_hpp
|
||
|
|
||
|
#include "../KeyboardMachine.hpp"
|
||
|
|
||
|
namespace Oric {
|
||
|
|
||
|
struct KeyboardMapper: public KeyboardMachine::Machine::KeyboardMapper {
|
||
|
uint16_t mapped_key_for_key(Inputs::Keyboard::Key key);
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif /* KeyboardMapper_hpp */
|