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

diff --git a/m2m/include/midi-score.hh b/m2m/include/midi-score.hh
new file mode 100644 (file)
index 0000000..08cd69b
--- /dev/null
@@ -0,0 +1,28 @@
+//
+// midi-score.hh -- declare midi_score
+//
+// copyright 1997 Jan Nieuwenhuizen <jan@digicash.com>
+
+#ifndef MIDI_SCORE_HH
+#define MIDI_SCORE_HH
+
+/// (midi_score)
+class Midi_score {
+public:
+       Midi_score( int format_i, int tracks_i, int tempo_i );
+       ~Midi_score();
+
+       void add_track( Midi_track* midi_track_p );
+
+       int output_mudela( String filename_str );
+       void process();
+
+private:
+       IPointerList<Midi_track*> midi_track_p_list_;
+       int format_i_;
+       int tracks_i_;
+       int tempo_i_;
+};
+
+#endif // MIDI_SCORE_HH
+