(process_acknowledged_grobs):
[lilypond.git] / lily / music-wrapper.cc
blob4486f589c8071c8621833e2c9ff33f3025312fc5
1 /*
2 music-wrapper.cc -- implement Music_wrapper
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
11 #include "music-wrapper.hh"
16 Music_wrapper::Music_wrapper ()
17 : Music ()
21 Moment
22 Music_wrapper::get_length () const
24 return element ()->get_length ();
27 Music*
28 Music_wrapper::element () const
30 return unsmob_music (get_mus_property ("element"));
34 ADD_MUSIC (Music_wrapper);
37 Moment
38 Music_wrapper::start_mom () const
40 return element ()->start_mom ();