mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 23:32:28 +00:00
28 lines
396 B
C++
28 lines
396 B
C++
//
|
|
// Mouse.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 12/02/2021.
|
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Mouse_hpp
|
|
#define Mouse_hpp
|
|
|
|
#include "ReactiveDevice.hpp"
|
|
|
|
namespace Apple {
|
|
namespace ADB {
|
|
|
|
class Mouse: public ReactiveDevice {
|
|
public:
|
|
Mouse(Bus &);
|
|
|
|
void perform_command(const Command &command) override;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* Mouse_hpp */
|