]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/compressed-music-iterator.hh
84b92abe3dea5feac299ea08f4cee3d9af904a23
[lilypond.git] / lily / include / compressed-music-iterator.hh
1 /*   
2   compressed-music-iterator.hh -- declare Compressed_music_iterator
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef COMPRESSED_MUSIC_ITERATOR_HH
11 #define COMPRESSED_MUSIC_ITERATOR_HH
12
13 #include "music-wrapper-iterator.hh"
14
15 class Compressed_music_iterator : public Music_wrapper_iterator
16 {
17 public:
18   Bracket_req* start_req_p_;
19   Bracket_req* stop_req_p_;
20   DECLARE_MY_RUNTIME_TYPEINFO;
21   Compressed_music_iterator();
22   ~Compressed_music_iterator ();
23   virtual void do_process_and_next (Moment);
24   virtual void construct_children ();
25   Compressed_music *compressed_l ()const;
26 };
27
28
29 #endif /* COMPRESSED_MUSIC_ITERATOR_HH */
30