openMSX
|
#include <MidiInDevice.hh>
Public Member Functions | |
std::string_view | getClass () const final |
A pluggable belongs to a certain class. | |
virtual void | signal (EmuTime::param time)=0 |
Public Member Functions inherited from openmsx::Pluggable | |
virtual | ~Pluggable ()=default |
virtual std::string_view | getName () const |
Name used to identify this pluggable. | |
virtual std::string_view | getDescription () const =0 |
Description for this pluggable. | |
void | plug (Connector &connector, EmuTime::param time) |
This method is called when this pluggable is inserted in a connector. | |
void | unplug (EmuTime::param time) |
This method is called when this pluggable is removed from a connector. | |
Connector * | getConnector () const |
Get the connector this Pluggable is plugged into. | |
bool | isPluggedIn () const |
Returns true if this pluggable is currently plugged into a connector. | |
Additional Inherited Members | |
Protected Member Functions inherited from openmsx::Pluggable | |
Pluggable () | |
virtual void | plugHelper (Connector &newConnector, EmuTime::param time)=0 |
virtual void | unplugHelper (EmuTime::param time)=0 |
void | setConnector (Connector *conn) |
Definition at line 8 of file MidiInDevice.hh.
|
finalvirtual |
A pluggable belongs to a certain class.
A pluggable only fits in connectors of the same class.
Implements openmsx::Pluggable.
Definition at line 5 of file MidiInDevice.cc.
|
pure virtual |
Implemented in openmsx::DummyMidiInDevice, openmsx::MidiInReader, and openmsx::MidiInALSA.