]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rhythmic-column-engraver.hh
release: 1.1.6
[lilypond.git] / lily / include / rhythmic-column-engraver.hh
1 /*
2   rhythmic-column-engraver.hh -- declare Rhythmic_column_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef RHYTHMIC_COLUMN_GRAV_HH
11 #define RHYTHMIC_COLUMN_GRAV_HH
12
13 #include "engraver.hh"
14 #include "parray.hh"
15
16 class Rhythmic_column_engraver :public Engraver {
17   Link_array<Script> script_l_arr_;
18   Link_array<Rhythmic_head> rhead_l_arr_;
19   Stem * stem_l_;
20   Note_column *ncol_p_;
21   Dot_column *dotcol_l_;
22
23 protected:
24   VIRTUAL_COPY_CONS(Translator);
25   virtual void acknowledge_element (Score_element_info);
26   virtual void process_acknowledged ();
27   virtual void do_pre_move_processing();
28   virtual void do_post_move_processing();
29 public:
30   Rhythmic_column_engraver();
31   
32 };
33 #endif // RHYTHMIC_COLUMN_GRAV_HH
34
35
36