]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/change-iterator.hh
patch::: 1.3.85.jcn4
[lilypond.git] / lily / include / change-iterator.hh
1 /*
2   change-iterator.hh -- declare Change_iterator
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef CHANGE_ITERATOR_HH
11 #define CHANGE_ITERATOR_HH
12
13 #include "music-iterator.hh"
14
15
16 class Change_iterator : public Music_iterator
17 {
18 public:
19   VIRTUAL_COPY_CONS (Music_iterator);
20   /*
21     CTOR is public
22    */
23
24 protected:
25   virtual void do_process_and_next (Moment);
26
27 private:
28   void  error (String);
29 };
30
31 #endif