lilypond-1.5.10
[lilypond.git] / lily / include / key-performer.hh
blob512bd48a53e4ac7254011267667f82138cb8e290
1 /*
2 key-performer.hh -- declare Key_performer
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2000 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 virtual bool do_try_music (Music* req_l);
25 virtual void do_process_music ();
26 virtual void do_pre_move_processing ();
28 private:
29 Key_change_req* key_req_l_;
30 Audio_key* audio_p_;
33 #endif // KEY_PERFOMER_HH