]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dot-column.hh
release: 0.1.13
[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 Han-Wen Nienhuys <hanwen@stack.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   void add (Dots*);
23
24 public:
25   DECLARE_MY_RUNTIME_TYPEINFO;
26   void add (Rhythmic_head*);
27 protected:
28   virtual void do_pre_processing ();
29   virtual void do_substitute_dependency (Score_elem *o, Score_elem*n);
30 };
31 #endif // DOT_COLUMN_HH