X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Faudio-element-info.hh;h=a9d2107e22e5a7ea8faca689da5af804b527c6e4;hb=9c1421a4c5d42ae3c78218a296596cc9a4c2e4f5;hp=174a2d7eda489996ad6b4e7b9c85425fced716b2;hpb=a6ee9dcd388111e842064a8d46ab06c4897a00d2;p=lilypond.git diff --git a/lily/include/audio-element-info.hh b/lily/include/audio-element-info.hh index 174a2d7eda..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_; - Music *req_; - Translator * origin_trans_; - Link_array origin_transes (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