2 event-chord-iterator.cc -- implement Event_chord_iterator
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
9 #include "event-iterator.hh"
12 #include "duration.hh"
14 #include "international.hh"
18 Event_iterator::Event_iterator ()
23 Event_iterator::construct_children ()
25 descend_to_bottom_context ();
26 Simple_music_iterator::construct_children ();
30 Event_iterator::process (Moment m
)
32 if (last_processed_mom_
< Moment (0))
33 report_event (get_music ());
35 Simple_music_iterator::process (m
);
38 IMPLEMENT_CTOR_CALLBACK (Event_iterator
);