]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/score-element-info.hh
release: 1.3.23
[lilypond.git] / lily / include / score-element-info.hh
index 34a5a497168ef1b3cdf5f9dc1fce859cdc9c0fd1..ac5ca855750b9a89118287f017601038d58ca1d6 100644 (file)
@@ -3,29 +3,32 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #ifndef STAFFELEMINFO_HH
 #define STAFFELEMINFO_HH
 
-#include "scalar.hh"
 #include "lily-proto.hh"
-#include "array.hh"
+#include "parray.hh"
 
 /**
-  Data container for broadcasts 
+  Data container for broadcasts.
+
+  TODO: Store this in element info! 
   */
 struct Score_element_info {
-    Score_element * elem_l_;
-    Graphical_lisp_element * lisp_l_;
-    Request*req_l_;
-    Array<Engraver*> origin_grav_l_arr_;
-
-    Score_element_info (Score_element*, Request*);
-    Score_element_info (Graphical_lisp_element*, Request*);
-    Score_element_info();
+  Translator * origin_trans_l_;
+  friend Engraver;
+public:
+  Link_array<Translator> origin_trans_l_arr (Translator*) const; 
+  Score_element * elem_l_;
+  Music *req_l_;
+
+
+  Score_element_info (Score_element*, Music*);
+  Score_element_info();
 };