]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/local-key-grav.hh
release: 0.1.8
[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     Key local_key_;
17     Key const *key_C_;
18     Array<Note_req* > mel_l_arr_;
19     Array<Item* > support_l_arr_;
20     Link_array<Item  > forced_l_arr_;
21     Link_array<Item > tied_l_arr_;
22     /* *************** */
23     virtual void do_process_requests();
24     virtual void acknowledge_element (Score_elem_info);
25     virtual void do_pre_move_processing();
26     Local_key_engraver();
27     DECLARE_MY_RUNTIME_TYPEINFO;
28 };
29
30 #endif // LOCALKEYGRAV_HH