]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/event-iterator.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / event-iterator.hh
1 /*
2   event-iter.hh -- declare Event_chord_iterator
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2006--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
7            Erik Sandberg <mandolaerik@gmail.com>
8 */
9
10 #ifndef EVENT_ITERATOR_HH
11 #define EVENT_ITERATOR_HH
12
13 #include "simple-music-iterator.hh"
14
15 class Event_iterator : public Simple_music_iterator
16 {
17   DECLARE_CLASSNAME(Event_iterator);
18
19 public:
20   DECLARE_SCHEME_CALLBACK (constructor, ());
21   Event_iterator ();
22   Event_iterator (Event_iterator const &);
23   virtual void construct_children ();
24
25 protected:
26   virtual void process (Moment);
27 };
28
29 #endif // EVENT_ITERATOR_HH