]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/script-engraver.hh
b4862c1317a783155b59429ce5c550696c2531f1
[lilypond.git] / lily / include / script-engraver.hh
1 /*
2   script-engraver.hh -- part of GNU LilyPond
3
4   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
5 */
6
7
8 #ifndef Script_GRAV
9 #define Script_GRAV
10
11 #include "engraver.hh"
12
13
14 class Script_engraver : public Engraver {
15   Link_array<Script> script_p_arr_;
16   Link_array<Articulation_req> script_req_l_arr_;
17
18 public:
19   VIRTUAL_COPY_CONS(Translator);
20   
21   Script_engraver();
22 protected:
23   virtual bool do_try_music (Music*);
24   virtual void do_process_requests ();
25   virtual void do_pre_move_processing ();
26   virtual void do_post_move_processing ();
27   virtual void acknowledge_element (Score_element_info);
28 };
29
30 #endif // Script_GRAV