]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/percent-repeat-iterator.hh
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / include / percent-repeat-iterator.hh
1 /*
2   percent-repeat-iterator.hh -- declare Percent_repeat_iterator
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2001--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef PERCENT_REPEAT_ITERATOR_HH
10 #define PERCENT_REPEAT_ITERATOR_HH
11
12 #include "sequential-iterator.hh"
13
14 class Percent_repeat_iterator : public Sequential_iterator
15 {
16 public:
17   DECLARE_CLASSNAME(Percent_repeat_iterator);
18   DECLARE_SCHEME_CALLBACK (constructor, ());
19   Percent_repeat_iterator ();
20 protected:
21   virtual SCM get_music_list () const;
22 private:
23 };
24
25 #endif /* PERCENT_REPEAT_ITERATOR_HH */