]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/change-iterator.hh
release: 0.1.61
[lilypond.git] / lily / include / change-iterator.hh
1 /*
2   change-iterator.hh -- declare 
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@stack.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   Change_translator *change_l_;
19
20   void  error (String);
21   
22 public:
23   DECLARE_MY_RUNTIME_TYPEINFO;
24   Change_iterator (Change_translator* prop_l);
25 protected:
26   virtual void process_and_next (Moment);
27 };
28
29 #endif