]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/performance.hh
* configure.in: Test for and accept lmodern if EC fonts not found.
[lilypond.git] / lily / include / performance.hh
1 /*
2   performance.hh -- declare Performance
3
4   (c) 1997--2004 Jan Nieuwenhuizen <janneke@gnu.org>
5  */
6
7 #ifndef PERFORMANCE_HH
8 #define PERFORMANCE_HH
9
10 #include "parray.hh"
11 #include "cons.hh"
12 #include "music-output.hh"
13
14 /* MIDI output.  */
15 class Performance : public Music_output
16 {
17 public:
18   Performance ();
19   ~Performance ();
20
21   void add_element (Audio_element*p);
22     
23   void output (Midi_stream& midi_stream_r);
24   void output_header_track (Midi_stream& midi_stream_r);
25
26   void print () const;
27   SCM process (String);
28
29   Link_array<Audio_staff> audio_staffs_;
30   Cons<Audio_element> *audio_elem_p_list_;
31   Output_def *midi_;
32 };
33
34 #endif /* PERFORMANCE_HH */