]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/local-key-grav.hh
49de9f82d225e91875b41ee1a4cf5438596f80a6
[lilypond.git] / lily / include / local-key-grav.hh
1 /*
2   local-key-grav.hh -- declare Local_key_engraver
3
4   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
5 */
6
7
8 #ifndef LOCALKEYGRAV_HH
9 #define LOCALKEYGRAV_HH
10
11 #include "engraver.hh"
12 #include "key.hh"
13 #include "parray.hh"
14
15 struct Local_key_engraver : Engraver {
16 protected:
17   TRANSLATOR_CLONE(Local_key_engraver);
18   virtual void do_process_requests();
19   virtual void acknowledge_element (Score_elem_info);
20   virtual void do_pre_move_processing();
21 public:
22   Key local_key_;
23   Key const *key_C_;
24   Array<Note_req* > mel_l_arr_;
25   Array<Item* > support_l_arr_;
26   Link_array<Item  > forced_l_arr_;
27   Link_array<Item > tied_l_arr_;
28   Local_key_engraver();
29   DECLARE_MY_RUNTIME_TYPEINFO;
30 };
31
32 #endif // LOCALKEYGRAV_HH