]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/grace-iterator.hh
2003 -> 2004
[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--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef NEWGRACE_ITERATOR_HH
11 #define NEWGRACE_ITERATOR_HH
12
13 #include "music-wrapper-iterator.hh"
14
15 class Grace_iterator : public Music_wrapper_iterator
16 {
17 public:
18   virtual void process (Moment);
19   DECLARE_SCHEME_CALLBACK(constructor, ());
20   Moment pending_moment () const;
21 };
22
23
24
25 #endif /* GRACE_ITERATOR_HH */
26
27