]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lyric-performer.hh
release: 0.1.13
[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   TRANSLATOR_CLONE(Lyric_performer);
20     DECLARE_MY_RUNTIME_TYPEINFO;
21     Lyric_performer();
22     ~Lyric_performer();
23
24 protected:
25     void do_print() const;
26     virtual bool do_try_request (Request* req_l);
27     virtual void do_process_requests();
28
29 private:
30     Array<Lyric_req*> lreq_arr_;
31 };
32
33 #endif // LYRIC_PERFOMER_HH