]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/audio-element-info.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / audio-element-info.hh
index 1d3479ecaa3a116e023270bdb33f9aede118ffea..a9d2107e22e5a7ea8faca689da5af804b527c6e4 100644 (file)
@@ -1,30 +1,31 @@
-/*   
+/*
   audio-item-info.hh -- declare Audio_item_info
-  
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
+
+  (c) 1999--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
 
 #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 *event_;
-  Translator *  origin_trans_;
-  Link_array<Translator> 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<Context*> origin_contexts (Translator *) const;
+
+  Audio_element_info (Audio_element *, Stream_event *);
   Audio_element_info ();
 };
 
-
 #endif