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