]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lyric-performer.hh
release: 1.1.1
[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--1998 Jan Nieuwenhuizen <janneke@gnu.org>
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 "array.hh"
16
17 class Lyric_performer : public Performer {
18 public:
19   TRANSLATOR_CLONE(Lyric_performer);
20   DECLARE_MY_RUNTIME_TYPEINFO;
21
22 protected:
23   void do_print() const;
24   virtual bool do_try_request (Request* req_l);
25   virtual void do_process_requests();
26
27 private:
28   Array<Lyric_req*> lreq_arr_;
29 };
30
31 #endif // LYRIC_PERFOMER_HH