]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/grace-iterator.hh
release: 1.3.107
[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--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef GRACE_ITERATOR_HH
11 #define GRACE_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   ~Grace_iterator ();
20   virtual void construct_children () ;
21   virtual void process (Moment);
22   static SCM constructor_cxx_function;
23   Moment pending_moment () const;
24 };
25
26
27
28 #endif /* GRACE_ITERATOR_HH */
29
30