1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-16 08:56:51 +00:00
CLK/Machines/Apple/ADB/Mouse.hpp

29 lines
406 B
C++
Raw Normal View History

//
// 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 &);
2021-02-14 04:16:45 +00:00
private:
void perform_command(const Command &command) override;
};
}
}
#endif /* Mouse_hpp */