]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/audio-element-info.hh
*** empty log message ***
[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--2005 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 class Audio_element_info {
20 public:
21   Audio_element * elem_;
22   Music *event_;
23   Translator *origin_trans_;
24
25   Link_array<Context> origin_contexts (Translator*) const;  
26
27   Audio_element_info (Audio_element*, Music*);
28   Audio_element_info ();
29 };
30
31
32 #endif