]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/event-chord-iterator.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / event-chord-iterator.hh
1 /*
2   event-chord-iterator.hh -- declare Event_chord_iterator
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef EVENT_CHORD_ITERATOR_HH
10 #define EVENT_CHORD_ITERATOR_HH
11
12 #include "simple-music-iterator.hh"
13
14 /**
15    Walk through a Event_chord
16 */
17 class Event_chord_iterator : public Simple_music_iterator
18 {
19   /**
20      Find a bottom notation context to deliver events to.
21   */
22   DECLARE_CLASSNAME(Event_chord_iterator);
23
24 public:
25   DECLARE_SCHEME_CALLBACK (constructor, ());
26   Event_chord_iterator ();
27   Event_chord_iterator (Event_chord_iterator const &);
28
29 protected:
30   virtual void process (Moment);
31   virtual void construct_children ();
32 };
33
34 #endif // EVENT_CHORD_ITERATOR_HH