]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rhythmic-column-engraver.hh
release: 1.1.38
[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--1999 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<Rhythmic_head> rhead_l_arr_;
18   Stem * stem_l_;
19   Note_column *ncol_p_;
20   Dot_column *dotcol_l_;
21
22 protected:
23   VIRTUAL_COPY_CONS(Translator);
24   virtual void acknowledge_element (Score_element_info);
25   virtual void process_acknowledged ();
26   virtual void do_pre_move_processing();
27   virtual void do_post_move_processing();
28 public:
29   Rhythmic_column_engraver();
30   
31 };
32 #endif // RHYTHMIC_COLUMN_GRAV_HH
33
34
35