]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/chord-tremolo-iterator.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / chord-tremolo-iterator.hh
1 /*
2   chord-tremolo-iterator.hh -- declare Chord_tremolo_iterator
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2000--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef CHORD_TREMOLO_ITERATOR_HH
10 #define CHORD_TREMOLO_ITERATOR_HH
11
12 #include "sequential-iterator.hh"
13
14 class Chord_tremolo_iterator : public Sequential_iterator
15 {
16 public:
17   DECLARE_SCHEME_CALLBACK (constructor, ());
18   /* construction */
19   DECLARE_CLASSNAME(Chord_tremolo_iterator);
20   Chord_tremolo_iterator ();
21 protected:
22   virtual SCM get_music_list () const;
23 private:
24 };
25
26 #endif /* CHORD_TREMOLO_ITERATOR_HH */
27