2 music-wrapper-iterator.cc -- implement Music_wrapper_iterator
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
9 #include "music-wrapper-iterator.hh"
10 #include "music-wrapper.hh"
12 Music_wrapper_iterator::Music_wrapper_iterator ()
18 Music_wrapper_iterator::do_quit ()
24 Music_wrapper_iterator::derived_mark () const
27 scm_gc_mark (child_iter_->self_scm ());
31 Music_wrapper_iterator::derived_substitute (Context *f, Context *t)
34 child_iter_->substitute_outlet (f, t);
38 Music_wrapper_iterator::construct_children ()
40 Music *my_music = get_music ();
41 Music *child = unsmob_music (my_music->get_property ("element"));
42 child_iter_ = unsmob_iterator (get_iterator (child));
46 Music_wrapper_iterator::ok () const
48 return child_iter_ && child_iter_->ok ();
52 Music_wrapper_iterator::process (Moment m)
54 child_iter_->process (m);
58 Music_wrapper_iterator::pending_moment () const
60 return child_iter_->pending_moment ();
64 Music_wrapper_iterator::try_music_in_children (Music *m) const
66 return child_iter_->try_music (m);
69 IMPLEMENT_CTOR_CALLBACK (Music_wrapper_iterator);
72 Music_wrapper_iterator::run_always () const
74 return child_iter_->run_always ();