]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lyric-engraver.hh
release: 0.0.76
[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     Lyric_req* lreq_l_;
19     Text_item *lyric_item_p_;
20 protected:
21     virtual void do_pre_move_processing();
22     virtual bool do_try_request(Request*);
23     virtual void do_process_requests();
24     virtual void do_post_move_processing();
25 public:
26     NAME_MEMBERS();
27     Lyric_engraver();
28 };
29 #endif // LYRIC_ENGRAVER_HH