]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/request-iterator.hh
release: 1.3.26
[lilypond.git] / lily / include / request-iterator.hh
1 /*   
2   request-iterator.hh -- declare Request_iterator
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef REQUEST_ITERATOR_HH
11 #define REQUEST_ITERATOR_HH
12
13 #include "music-iterator.hh"
14
15 class Request_iterator : public Music_iterator
16 {
17 public:
18   Request_iterator ();
19 protected:
20   virtual void do_process_and_next (Moment );
21 };
22
23 #endif /* REQUEST_ITERATOR_HH */
24