]> git.donarmstrong.com Git - lilypond.git/blob - lily/request-iterator.cc
release: 1.3.26
[lilypond.git] / lily / request-iterator.cc
1 /*   
2   request-iterator.cc --  implement 
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9 #include "request-iterator.hh"
10 #include "music.hh"
11
12 Request_iterator::Request_iterator()
13 {
14 }
15
16
17 void
18 Request_iterator::do_process_and_next (Moment m)
19 {
20   if (first_b_)
21     {
22       bool g= try_music (music_l_);
23       if (!g)
24         music_l_->warning (_f ("Junking request: `%s'", classname(music_l_)));
25
26       first_b_ = false;
27     }
28   Music_iterator::do_process_and_next (m);
29 }