]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lyric-performer.hh
release: 1.3.93
[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--2000 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   VIRTUAL_COPY_CONS(Translator);
20  Lyric_performer ();
21
22 protected:
23
24   virtual bool do_try_music (Music* req_l);
25   virtual void do_process_music();
26   virtual void do_pre_move_processing ();
27
28 private:
29   Link_array<Lyric_req> lreq_arr_;
30   Audio_text* audio_p_;
31 };
32
33 #endif // LYRIC_PERFOMER_HH