1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-25 04:29:09 +00:00
CLK/Machines/Apple/Macintosh/Keyboard.hpp

26 lines
334 B
C++
Raw Normal View History

2019-05-08 16:34:26 +00:00
//
// Keyboard.h
// Clock Signal
//
// Created by Thomas Harte on 08/05/2019.
// Copyright © 2019 Thomas Harte. All rights reserved.
//
#ifndef Keyboard_hpp
#define Keyboard_hpp
namespace Apple {
namespace Macintosh {
class Keyboard {
public:
void set_input(bool data) {
printf("");
}
};
}
}
#endif /* Keyboard_h */