]> git.donarmstrong.com Git - lilypond.git/blob - lily/time-scaled-music-iterator.cc
remove file.
[lilypond.git] / lily / time-scaled-music-iterator.cc
1 /*   
2   time-scaled-music-iterator.cc -- implement Time_scaled_music_iterator
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #include "time-scaled-music-iterator.hh"
11 #include "context.hh"
12 #include "input.hh"
13
14 void
15 Time_scaled_music_iterator::process (Moment m)
16 {
17   if (!m.to_bool ())
18     {
19       Music_iterator *yeah = try_music (get_music ());
20       if (yeah)
21         set_context (yeah->get_outlet ());
22       else
23         get_music ()->origin ()->warning (_ ("no one to print a tuplet start bracket"));
24     }
25
26   Music_wrapper_iterator::process (m);
27 }
28  
29 IMPLEMENT_CTOR_CALLBACK (Time_scaled_music_iterator);