]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/grob-info.cc
* lily/beam.cc (shift_region_to_valid): fix stupido bug.
[lilypond.git] / lily / grob-info.cc
index edd020796e7f416f4123d032d96433647d7ea4ad..9b4d540e0e74416a3716a645de672447017ae7d2 100644 (file)
@@ -3,29 +3,34 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
+#include "grob.hh"
 #include "grob-info.hh"
-#include "request.hh"
-#include "translator.hh"
+#include "music.hh"
 #include "translator-group.hh"
 
-Grob_info::Grob_info (Grob*s_l, Music *r_l)
+Grob_info::Grob_info (Grob*s_l)
 {
-  elem_l_ = s_l;
-  req_l_ = r_l;
+  grob_l_ = s_l;
   origin_trans_l_ = 0;  
 }
 
 
-Grob_info::Grob_info()
+Grob_info::Grob_info ()
 {
-  elem_l_ = 0;
-  req_l_ = 0;
+  grob_l_ = 0;
   origin_trans_l_ = 0;
 }
 
+Music*
+Grob_info::music_cause ()
+  
+{
+  SCM cause = grob_l_->get_grob_property ("cause"); 
+  return unsmob_music (cause);
+}
 
 Link_array<Translator>
 Grob_info::origin_trans_l_arr (Translator* end) const