X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Faudio-element-info.hh;h=fd529bfde22f2244ad345526508a91d19de19d29;hb=6f664e0e318a1651f6fe9317a842bf9c7f476f08;hp=e42d4ceeede6eb1c633ea47010fc2f9a5fbb8f55;hpb=fc3e875d6bf06f0680e897faffdcab36ad975a03;p=lilypond.git diff --git a/lily/include/audio-element-info.hh b/lily/include/audio-element-info.hh index e42d4ceeed..fd529bfde2 100644 --- a/lily/include/audio-element-info.hh +++ b/lily/include/audio-element-info.hh @@ -1,30 +1,31 @@ -/* +/* audio-item-info.hh -- declare Audio_item_info - + source file of the GNU LilyPond music typesetter - - (c) 1999--2001 Han-Wen Nienhuys - - */ + + (c) 1999--2006 Han-Wen Nienhuys +*/ #ifndef AUDIO_ITEM_INFO_HH #define AUDIO_ITEM_INFO_HH #include "lily-proto.hh" -#include "parray.hh" +#include "std-vector.hh" /** - Data container for broadcasts - */ -struct Audio_element_info { - Audio_element * elem_l_; - Music *req_l_; - Translator * origin_trans_l_; - Link_array origin_trans_l_arr (Translator*) const; - - Audio_element_info (Audio_element*, Music*); + Data container for broadcasts +*/ +class Audio_element_info +{ +public: + Audio_element *elem_; + Stream_event *event_; + Translator *origin_trans_; + + vector origin_contexts (Translator *) const; + + Audio_element_info (Audio_element *, Stream_event *); Audio_element_info (); }; - #endif