]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-performer.hh
0fb8aecbd43fab4ae98831306d1ca4fe7b1f0b2d
[lilypond.git] / lily / include / note-performer.hh
1 /*
2   note-performer.hh -- declare Note_performer
3
4   (c) 1996, 1997 Han-Wen Nienhuys <hanwen@stack.nl>
5                  Jan Nieuwenhuizen <jan@digicash.com>
6  */
7
8 #ifndef NOTE_PERFORMER_HH
9 #define NOTE_PERFORMER_HH
10
11 #include "performer.hh"
12
13 /**
14 */
15
16 class Note_performer : public Performer {
17 public:
18     DECLARE_MY_RUNTIME_TYPEINFO;
19
20     Note_performer();
21
22 protected:
23     virtual void process_requests();
24
25     virtual bool do_try_request( Request *req_l ) ;
26     virtual void do_print() const;
27
28 private:
29     Melodic_req * note_req_l_;
30 };
31
32 #endif // NOTE_PERFORMER_HH