]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lyric-performer.hh
release: 0.0.77.jcn1
[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 Jan Nieuwenhuizen <jan@digicash.com>
7 */
8
9
10 #ifndef LYRIC_PERFOMER_HH
11 #define LYRIC_PERFOMER_HH
12
13 #include "lily-proto.hh"
14 #include "performer.hh"
15 #include "varray.hh"
16
17 class Lyric_performer : public Performer {
18 public:
19     NAME_MEMBERS();
20     Lyric_performer();
21     ~Lyric_performer();
22
23 protected:
24     void do_print() const;
25     virtual bool do_try_request( Request* req_l );
26     virtual void process_requests();
27
28 private:
29     Array<Lyric_req*> lreq_arr_;
30 };
31
32 #endif // LYRIC_PERFOMER_HH