]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.39
authorfred <fred>
Tue, 4 Mar 1997 08:33:37 +0000 (08:33 +0000)
committerfred <fred>
Tue, 4 Mar 1997 08:33:37 +0000 (08:33 +0000)
m2m/include/midi-voice.hh [new file with mode: 0644]

diff --git a/m2m/include/midi-voice.hh b/m2m/include/midi-voice.hh
new file mode 100644 (file)
index 0000000..cf3df84
--- /dev/null
@@ -0,0 +1,26 @@
+//
+// midi-voice.hh -- declare midi_voice
+//
+// copyright 1997 Jan Nieuwenhuizen <jan@digicash.com>
+
+/// (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*> midi_event_p_list_;
+};
+
+#endif // MIDI_VOICE_HH
+