]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/audio-element-info.hh
release: 1.3.131
[lilypond.git] / lily / include / audio-element-info.hh
1 /*   
2   audio-item-info.hh -- declare Audio_item_info
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef AUDIO_ITEM_INFO_HH
11 #define AUDIO_ITEM_INFO_HH
12
13 #include "lily-proto.hh"
14 #include "parray.hh"
15
16 /**
17   Data container for broadcasts 
18   */
19 struct Audio_element_info {
20   Audio_element * elem_l_;
21   Music *req_l_;
22   Translator *  origin_trans_l_;
23   Link_array<Translator> origin_trans_l_arr (Translator*) const;  
24
25   Audio_element_info (Audio_element*, Music*);
26   Audio_element_info();
27 };
28
29
30 #endif