]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lyric-engraver.hh
release: 1.0.1
[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--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef LYRIC_ENGRAVER_HH
11 #define LYRIC_ENGRAVER_HH
12 #include "engraver.hh"
13 #include "array.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   TRANSLATOR_CLONE(Lyric_engraver);
27     DECLARE_MY_RUNTIME_TYPEINFO;
28     Lyric_engraver();
29 };
30 #endif // LYRIC_ENGRAVER_HH