]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/score-element-info.cc
patch::: 1.3.95.tca2
[lilypond.git] / lily / score-element-info.cc
index 60aec0732346150c2bb54d986aa16ed136df3d22..c437a655d5831b4a530f088a482992e291204323 100644 (file)
@@ -3,16 +3,19 @@
 
   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>
 */
 
 #include "score-element-info.hh"
 #include "request.hh"
+#include "translator.hh"
+#include "translator-group.hh"
 
 Score_element_info::Score_element_info (Score_element*s_l, Music *r_l)
 {
   elem_l_ = s_l;
   req_l_ = r_l;
+  origin_trans_l_ = 0;  
 }
 
 
@@ -20,7 +23,20 @@ Score_element_info::Score_element_info()
 {
   elem_l_ = 0;
   req_l_ = 0;
+  origin_trans_l_ = 0;
 }
 
 
-
+Link_array<Translator>
+Score_element_info::origin_trans_l_arr (Translator* end) const
+{
+  Translator * t = origin_trans_l_;
+  Link_array<Translator> r;
+  do {
+    r.push (t);
+    t = t->daddy_trans_l_;
+  } while (t && t != end->daddy_trans_l_);
+  
+  return r;
+}
+