X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/346a9b8e1fcfe30629f0d1ee4675e9e8f89890cf..4c4732c6ed8cb0aaa70fb2d4c6e5a958868c5349:/src/mxmMidi/MidiInStream.py diff --git a/src/mxmMidi/MidiInStream.py b/src/mxmMidi/MidiInStream.py deleted file mode 100644 index 22f7e09..0000000 --- a/src/mxmMidi/MidiInStream.py +++ /dev/null @@ -1,52 +0,0 @@ -# -*- coding: ISO-8859-1 -*- - -from MidiOutStream import MidiOutStream - -class MidiInStream: - - """ - Takes midi events from the midi input and calls the apropriate - method in the eventhandler object - """ - - def __init__(self, midiOutStream, device): - - """ - - Sets a default output stream, and sets the device from where - the input comes - - """ - - if midiOutStream is None: - self.midiOutStream = MidiOutStream() - else: - self.midiOutStream = midiOutStream - - - def close(self): - - """ - Stop the MidiInstream - """ - - - def read(self, time=0): - - """ - - Start the MidiInstream. - - "time" sets timer to specific start value. - - """ - - - def resetTimer(self, time=0): - """ - - Resets the timer, probably a good idea if there is some kind - of looping going on - - """ -