]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dot-column.hh
release: 1.0.1
[lilypond.git] / lily / include / dot-column.hh
1 /*
2   dot-column.hh -- declare Dot_column Dot_column
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 DOT_COLUMN_HH
11 #define DOT_COLUMN_HH
12
13 #include "horizontal-group-item.hh"
14
15 /**
16   Group dots.  This is needed because, the dots have to be aligned per voice
17  */
18 class Dot_column : public Horizontal_group_item
19 {
20   Link_array<Rhythmic_head> head_l_arr_;
21   Link_array<Dots> dot_l_arr_;
22
23 public:
24   DECLARE_MY_RUNTIME_TYPEINFO;
25   void add_head (Rhythmic_head*);
26   void add_dots (Dots*);
27
28 protected:
29   virtual void do_pre_processing ();
30   virtual void do_substitute_dependency (Score_element *o, Score_element*n);
31 };
32 #endif // DOT_COLUMN_HH