]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/midi-output.hh
release: 0.0.57
[lilypond.git] / lily / include / midi-output.hh
1 /*
2   midioutput.hh -- declare Midi_output
3
4   source file of the LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef MIDIOUTPUT_HH
11 #define MIDIOUTPUT_HH
12 #include "lily-proto.hh"
13
14
15 struct Midi_output {
16     Midi_output(Score* score_l, Midi_def* );
17
18     void do_staff(Staff*st_l, int count);
19     void header();
20     void staffs();
21
22     Score* score_l_;
23     Midi_def* midi_l_;
24     Midi_stream* midi_stream_l_;
25 };
26
27 #endif // MIDIOUTPUT_HH
28