linuxsampler 1.0.0
|
This class is used as a listener, which is notified when the number of MIDI input devices is changed. More...
#include <EventListeners.h>
Public Member Functions | |
virtual void | MidiDeviceCountChanged (int NewCount)=0 |
Invoked when the number of MIDI input devices has changed. | |
virtual void | MidiDeviceToBeDestroyed (MidiInputDevice *pDevice)=0 |
Invoked right before the supplied MIDI input device is going to be destroyed. | |
virtual void | MidiDeviceCreated (MidiInputDevice *pDevice)=0 |
Invoked to inform that a new MidiInputDevice has just been created. |
This class is used as a listener, which is notified when the number of MIDI input devices is changed.
Definition at line 127 of file EventListeners.h.
virtual void LinuxSampler::MidiDeviceCountListener::MidiDeviceCountChanged | ( | int | NewCount | ) | [pure virtual] |
Invoked when the number of MIDI input devices has changed.
NewCount | The new number of MIDI input devices. |
virtual void LinuxSampler::MidiDeviceCountListener::MidiDeviceCreated | ( | MidiInputDevice * | pDevice | ) | [pure virtual] |
Invoked to inform that a new MidiInputDevice has just been created.
pDevice | newly created MidiInputDevice |
virtual void LinuxSampler::MidiDeviceCountListener::MidiDeviceToBeDestroyed | ( | MidiInputDevice * | pDevice | ) | [pure virtual] |
Invoked right before the supplied MIDI input device is going to be destroyed.
pDevice | MidiInputDevice to be deleted |