2 grob-info.cc -- implement Grob_info
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
9 #include "grob-info.hh"
11 #include "translator.hh"
12 #include "translator-group.hh"
14 Grob_info::Grob_info (Grob
*s_l
, Music
*r_l
)
22 Grob_info::Grob_info ()
30 Link_array
<Translator
>
31 Grob_info::origin_trans_l_arr (Translator
* end
) const
33 Translator
* t
= origin_trans_l_
;
34 Link_array
<Translator
> r
;
37 t
= t
->daddy_trans_l_
;
38 } while (t
&& t
!= end
->daddy_trans_l_
);