]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/grace-iterator.hh
* VERSION (MY_PATCH_LEVEL): make 1.7.0
[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--2002 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_COPY_CONS (Music_iterator);
19   virtual void process (Moment);
20   DECLARE_SCHEME_CALLBACK(constructor, ());
21   Moment pending_moment () const;
22 };
23
24
25
26 #endif /* GRACE_ITERATOR_HH */
27
28