]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/auto-change-iterator.hh
release: 1.2.11
[lilypond.git] / lily / include / auto-change-iterator.hh
1 /*   
2   auto-change-iterator.hh -- declare Auto_change_iterator
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef AUTO_CHANGE_ITERATOR_HH
11 #define AUTO_CHANGE_ITERATOR_HH
12
13 #include "music-wrapper-iterator.hh"
14 #include "direction.hh"
15
16 class Auto_change_iterator  : public Music_wrapper_iterator
17 {
18   Direction where_dir_;
19
20   void change_to (Music_iterator* , String, String);
21 protected:
22   virtual void do_process_and_next (Moment);  
23 public:
24   Auto_change_iterator ();
25 };
26
27 #endif /* AUTO_CHANGE_ITERATOR_HH */