(all-grob-descriptions): remove gap from
[lilypond.git] / lily / grace-iterator.cc
bloba63ad5c814f7edd4c6e095bcd7cce9cf8b70d086
1 /*
2 grace-music.cc -- implement Grace_music
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #include "grace-music.hh"
11 #include "grace-iterator.hh"
14 #include "global-context.hh"
15 #include "warn.hh"
17 void
18 Grace_iterator::process (Moment m)
20 Moment main ;
21 main.main_part_ = - start_mom_.grace_part_ + m.grace_part_;
22 Music_wrapper_iterator::process (main);
25 We can safely do this, since \grace should always be inside
26 sequential.
28 descend_to_child (child_iter_->get_outlet ());
31 Moment
32 Grace_iterator::pending_moment () const
34 Moment cp =Music_wrapper_iterator::pending_moment ();
36 Moment pending;
37 pending.grace_part_ = start_mom_.grace_part_ + cp.main_part_;
39 return pending;
43 IMPLEMENT_CTOR_CALLBACK (Grace_iterator);