]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/local-key-engraver.hh
release: 1.0.1
[lilypond.git] / lily / include / local-key-engraver.hh
1 /*
2   local-key-engraver.hh -- declare Local_key_engraver
3
4   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.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     Local_key_item *key_item_p_;
17 protected:
18   TRANSLATOR_CLONE(Local_key_engraver);
19   virtual void do_process_requests();
20   virtual void acknowledge_element (Score_element_info);
21   virtual void do_pre_move_processing();
22   virtual void do_creation_processing ();
23   virtual void process_acknowledged ();
24 public:
25   
26   Key local_key_;
27   Key const *key_C_;
28   Array<Note_req* > mel_l_arr_;
29   Array<Item* > support_l_arr_;
30   Link_array<Item  > forced_l_arr_;
31   Link_array<Item > tied_l_arr_;
32   Local_key_engraver();
33   DECLARE_MY_RUNTIME_TYPEINFO;
34 };
35
36 #endif // LOCALKEYGRAV_HH