lilypond-1.3.16
[lilypond.git] / lily / include / rhythmic-column-grav.hh
blob52e0904e3bea080387f48853ff7c9bb7aec5d600
1 /*
2 rhythmic-column-grav.hh -- declare Rhythmic_column_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1998 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
10 #ifndef RHYTHMIC_COLUMN_GRAV_HH
11 #define RHYTHMIC_COLUMN_GRAV_HH
13 #include "engraver.hh"
14 #include "parray.hh"
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;
30 #endif // RHYTHMIC_COLUMN_GRAV_HH