* lily/stem.cc (get_default_stem_end_position): lengthen stems for
[lilypond.git] / lily / grace-music.cc
blob76d17d9bceeaf162ad5c2386075cb8f3fe8ac1f3
1 /*
2 grace-music.cc -- implement Grace_music
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #include "grace-music.hh"
11 #include "grace-iterator.hh"
15 Moment
16 Grace_music::get_length () const
18 Moment m;
19 return m;
23 Moment
24 Grace_music::start_mom () const
26 Moment l = Music_wrapper::get_length ();
27 Moment gl;
28 gl.grace_part_ = -(l.main_part_ + l.grace_part_ );
29 return gl;
32 Grace_music::Grace_music ()
34 set_mus_property ("iterator-ctor",
35 Grace_iterator::constructor_proc);
39 ADD_MUSIC (Grace_music);