]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/grace-iterator.hh
f4e64de693597fb0bda67bb79991892125fd5940
[lilypond.git] / lily / include / grace-iterator.hh
1 /*
2   grace-iterator.hh -- declare Grace_iterator
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1999--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef NEWGRACE_ITERATOR_HH
10 #define NEWGRACE_ITERATOR_HH
11
12 #include "music-wrapper-iterator.hh"
13
14 class Grace_iterator : public Music_wrapper_iterator
15 {
16 public:
17   virtual void process (Moment);
18   DECLARE_SCHEME_CALLBACK (constructor, ());
19   DECLARE_CLASSNAME(Grace_iterator);
20   Moment pending_moment () const;
21 };
22
23 #endif /* GRACE_ITERATOR_HH */
24