]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rhythmic-column-grav.hh
52e0904e3bea080387f48853ff7c9bb7aec5d600
[lilypond.git] / lily / include / rhythmic-column-grav.hh
1 /*
2   rhythmic-column-grav.hh -- declare Rhythmic_column_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@stack.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   Stem * stem_l_;
19   Note_column *ncol_p_;
20   Dot_column *dotcol_p_;
21 protected:
22   TRANSLATOR_CLONE(Rhythmic_column_engraver);
23   virtual void acknowledge_element (Score_elem_info);
24   virtual void do_pre_move_processing();
25   virtual void do_post_move_processing();
26 public:
27   Rhythmic_column_engraver();
28   DECLARE_MY_RUNTIME_TYPEINFO;
29 };
30 #endif // RHYTHMIC_COLUMN_GRAV_HH
31
32
33