From fac23a5344c2137afa48995cf5de78d1a8a43323 Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 4 Mar 1997 08:33:37 +0000 Subject: [PATCH] lilypond-0.0.39 --- m2m/include/midi-voice.hh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 m2m/include/midi-voice.hh diff --git a/m2m/include/midi-voice.hh b/m2m/include/midi-voice.hh new file mode 100644 index 0000000000..cf3df84171 --- /dev/null +++ b/m2m/include/midi-voice.hh @@ -0,0 +1,26 @@ +// +// midi-voice.hh -- declare midi_voice +// +// copyright 1997 Jan Nieuwenhuizen + +/// (midi_voice) +#ifndef MIDI_VOICE_HH +#define MIDI_VOICE_HH + +class Midi_voice { +public: + Midi_voice( Moment begin_mom ); + + void add_event( Midi_event* midi_event_p ); + Moment begin_mom(); + Moment end_mom(); + + String mudela_str( Moment from_mom, Moment to_mom, bool multiple_bo ); + +private: + Moment begin_mom_; + IPointerList midi_event_p_list_; +}; + +#endif // MIDI_VOICE_HH + -- 2.39.5