From: fred Date: Tue, 4 Mar 1997 08:33:37 +0000 (+0000) Subject: lilypond-0.0.39 X-Git-Tag: release/1.5.59~6275 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=fac23a5344c2137afa48995cf5de78d1a8a43323;p=lilypond.git lilypond-0.0.39 --- 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 +