1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-16 22:28:57 +00:00
CLK/Machines/Apple/ADB/Keyboard.hpp

29 lines
424 B
C++
Raw Normal View History

2021-02-14 04:16:45 +00:00
//
// Keyboard.hpp
// Clock Signal
//
// Created by Thomas Harte on 13/02/2021.
// Copyright © 2021 Thomas Harte. All rights reserved.
//
#ifndef Keyboard_hpp
#define Keyboard_hpp
#include "ReactiveDevice.hpp"
namespace Apple {
namespace ADB {
class Keyboard: public ReactiveDevice {
public:
Keyboard(Bus &);
private:
void perform_command(const Command &command) override;
};
}
}
#endif /* Keyboard_hpp */