]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/performance.hh
release: 1.5.1
[lilypond.git] / lily / include / performance.hh
1 /*
2   performance.hh -- declare Performance
3
4   (c)  1997--2001 Jan Nieuwenhuizen <janneke@gnu.org>
5  */
6
7 #ifndef PERFORMANCE_HH
8 #define PERFORMANCE_HH
9
10 #include "parray.hh"
11 #include "lily-proto.hh"
12 #include "cons.hh"
13 #include "music-output.hh"
14
15 /** all stuff which goes onto midi. notes, signs, symbols in a score
16      #Performance# contains the items, the columns.
17     */
18
19 class Performance : public Music_output {
20 public:
21   Performance ();
22   ~Performance ();
23
24   void add_element (Audio_element*p);
25     
26   void output (Midi_stream& midi_stream_r);
27   void output_header_track (Midi_stream& midi_stream_r);
28
29   void print () const;
30   void process ();
31
32   Link_array<Audio_staff> audio_staff_l_arr_;
33   Cons<Audio_element> *audio_elem_p_list_;
34   Midi_def  * midi_l_;
35 };
36
37 #endif // PERFORMANCE_HH