]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/folded-repeat-iterator.hh
d9215a95553b3c71e8901d78a807981b49b95720
[lilypond.git] / lily / include / folded-repeat-iterator.hh
1 /*   
2   folded-repeat-iterator.hh -- declare Folded_repeat_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 FOLDED_REPEAT_ITERATOR_HH
11 #define FOLDED_REPEAT_ITERATOR_HH
12
13 #include "music-iterator.hh"
14
15 /**
16    Iterate through a repeated section: first do the body, then
17    all alternatives in parallel.
18  */
19 class Folded_repeat_iterator : public Music_iterator
20 {
21   Music_iterator * main_iter_p_;
22   Music_iterator * alternative_iter_p_;
23   int count_;
24   Moment main_length_mom_;
25 public:
26   Folded_repeat_iterator ();
27   ~Folded_repeat_iterator ();
28   
29   virtual void construct_children ();
30   virtual Moment next_moment () const;
31   virtual bool ok () const;
32
33 protected:
34   void enter_alternative ();
35   void leave_body ();
36   
37   virtual void do_print () const;
38   virtual void do_process_and_next (Moment);
39 };
40 #endif /* FOLDED_REPEAT_ITERATOR_HH */
41