openMSX
MidiInDevice.hh
Go to the documentation of this file.
1#ifndef MIDIINDEVICE_HH
2#define MIDIINDEVICE_HH
3
4#include "Pluggable.hh"
5
6namespace openmsx {
7
8class MidiInDevice : public Pluggable
9{
10public:
11 // Pluggable (part)
12 [[nodiscard]] std::string_view getClass() const final;
13
14 virtual void signal(EmuTime::param time) = 0;
15};
16
17} // namespace openmsx
18
19#endif
std::string_view getClass() const final
A pluggable belongs to a certain class.
virtual void signal(EmuTime::param time)=0
This file implemented 3 utility functions:
Definition Autofire.cc:11