]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/audio-element-info.hh
``slikken kreng''
[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--2002 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_;
21   Music *req_;
22   Translator *  origin_trans_;
23   Link_array<Translator> origin_transes (Translator*) const;  
24
25   Audio_element_info (Audio_element*, Music*);
26   Audio_element_info ();
27 };
28
29
30 #endif