lilypond-1.3.16
[lilypond.git] / lily / include / key-performer.hh
blob896db23ba4b61b730487abe72aa1ac513d57f1c2
1 /*
2 key-performer.hh -- declare Key_performer
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1999 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
9 #ifndef KEY_PERFOMER_HH
10 #define KEY_PERFOMER_HH
12 #include "lily-proto.hh"
13 #include "performer.hh"
15 class Key_performer : public Performer
17 public:
18 VIRTUAL_COPY_CONS(Translator);
20 Key_performer();
21 ~Key_performer();
23 protected:
24 void do_print() const;
25 virtual bool do_try_music (Music* req_l);
26 virtual void do_process_requests ();
27 virtual void do_pre_move_processing ();
29 private:
30 Key_change_req* key_req_l_;
31 Audio_key* audio_p_;
34 #endif // KEY_PERFOMER_HH