X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Ftime-scaled-music-iterator.cc;h=06a4f7ab1bec75d73209cdfe017847e12a5ca0c5;hb=9bea477a992947adbbba48bc479c3f551cde8225;hp=35f0eef493967388fa4fb239c944873d60e7bc2b;hpb=1b9fc29140bd1d9345f784595afd22158876dfb7;p=lilypond.git diff --git a/lily/time-scaled-music-iterator.cc b/lily/time-scaled-music-iterator.cc index 35f0eef493..06a4f7ab1b 100644 --- a/lily/time-scaled-music-iterator.cc +++ b/lily/time-scaled-music-iterator.cc @@ -1,17 +1,14 @@ -/* +/* time-scaled-music-iterator.cc -- implement Time_scaled_music_iterator - + source file of the GNU LilyPond music typesetter - - (c) 1998--2002 Han-Wen Nienhuys - - */ -#include "time-scaled-music-iterator.hh" -#include "time-scaled-music.hh" -#include "request.hh" -#include "translator-group.hh" + (c) 1998--2005 Han-Wen Nienhuys +*/ +#include "time-scaled-music-iterator.hh" +#include "context.hh" +#include "input.hh" void Time_scaled_music_iterator::process (Moment m) @@ -20,12 +17,12 @@ Time_scaled_music_iterator::process (Moment m) { Music_iterator *yeah = try_music (get_music ()); if (yeah) - set_translator (yeah->report_to ()); + set_context (yeah->get_outlet ()); else get_music ()->origin ()->warning (_ ("no one to print a tuplet start bracket")); } Music_wrapper_iterator::process (m); } - + IMPLEMENT_CTOR_CALLBACK (Time_scaled_music_iterator);