lilypond-1.1.44
[lilypond.git] / lily / include / key-performer.hh
blob127dafb23123e402568803d602cc55112ac03e87
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 {
16 public:
17 VIRTUAL_COPY_CONS(Translator);
19 Key_performer();
20 ~Key_performer();
22 protected:
23 void do_print() const;
24 virtual bool do_try_music (Music* req_l);
25 virtual void do_process_requests();
27 private:
28 Key_change_req* key_req_l_;
31 #endif // KEY_PERFOMER_HH