X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Faudio-element-info.hh;h=a9d2107e22e5a7ea8faca689da5af804b527c6e4;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=be38ba801403f16d4e9ec8dabed79318fdc4b546;hpb=d9b43b93f2c885409bafdb157138158f65cc49aa;p=lilypond.git diff --git a/lily/include/audio-element-info.hh b/lily/include/audio-element-info.hh index be38ba8014..a9d2107e22 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--2002 Han-Wen Nienhuys - - */ + + (c) 1999--2008 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