]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dot-column-engraver.hh
patch::: 1.3.67.mb1: Re: Broken features
[lilypond.git] / lily / include / dot-column-engraver.hh
1 /*
2   dot-column-engraver.hh -- declare Dot_column_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef DOT_COLUMN_GRAV_HH
11 #define DOT_COLUMN_GRAV_HH
12
13 #include "engraver.hh"
14
15 class Dot_column_engraver : public Engraver
16 {
17   Dot_column *dotcol_p_ ;
18   Link_array<Rhythmic_head> head_l_arr_;
19 public:
20   VIRTUAL_COPY_CONS(Translator);
21   Dot_column_engraver();
22   
23 protected:
24   virtual void acknowledge_element (Score_element_info);
25   virtual void do_pre_move_processing ();  
26 };
27
28 #endif // DOT_COLUMN_GRAV_HH