]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-performer.hh
release: 1.1.43
[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
28 private:
29   Array<Melodic_req *> note_req_l_;
30 };
31
32 #endif // NOTE_PERFORMER_HH