]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-performer.hh
bfd49375c133f4aead8cbb4b21e67d6a227f3143
[lilypond.git] / lily / include / note-performer.hh
1 /*
2   note-performer.hh -- declare Note_performer
3
4   (c) 1996,  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
5                  Jan Nieuwenhuizen <janneke@gnu.org>
6  */
7
8 #ifndef NOTE_PERFORMER_HH
9 #define NOTE_PERFORMER_HH
10
11 #include "performer.hh"
12
13 /**
14 Convert reqs to audio notes.
15 */
16 class Note_performer : public Performer {
17 public:
18   VIRTUAL_COPY_CONS(Translator);
19   
20
21   Note_performer();
22
23 protected:
24   virtual void do_process_requests ();
25   virtual bool do_try_music (Music *req_l) ;
26   virtual void do_print () const;
27   virtual void do_pre_move_processing ();
28
29 private:
30   Array<Note_req*> note_req_l_arr_;
31   Array<Audio_note*> note_p_arr_;
32 };
33
34 #endif // NOTE_PERFORMER_HH