]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lyric-engraver.hh
9c50d5c0682e36bb5d4c1223e0e60a534beaba8a
[lilypond.git] / lily / include / lyric-engraver.hh
1 /*
2   lyric-engraver.hh -- declare Lyric_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef LYRIC_ENGRAVER_HH
11 #define LYRIC_ENGRAVER_HH
12 #include "engraver.hh"
13 #include "varray.hh"
14
15 #include "lily-proto.hh"
16
17 class Lyric_engraver : public Engraver {
18     Array<Lyric_req*> lreq_arr_;
19     virtual bool do_try_request(Request*);
20     virtual void do_process_requests();
21     virtual void do_post_move_processing();
22 public:
23     NAME_MEMBERS();
24     Lyric_engraver();
25 };
26 #endif // LYRIC_ENGRAVER_HH