2 lyric-engraver.hh -- declare Lyric_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
10 #ifndef LYRIC_ENGRAVER_HH
11 #define LYRIC_ENGRAVER_HH
12 #include "engraver.hh"
15 #include "lily-proto.hh"
17 class Lyric_engraver : public Engraver
20 virtual void do_pre_move_processing();
21 virtual bool do_try_music (Music*);
22 virtual void do_process_requests();
23 virtual void do_post_move_processing();
27 VIRTUAL_COPY_CONS(Translator);
30 Link_array<Lyric_req> lyric_req_l_arr_;
31 Link_array<Text_item> text_p_arr_;
34 #endif // LYRIC_ENGRAVER_HH