]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dot-column.hh
release: 1.3.33
[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--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef DOT_COLUMN_HH
11 #define DOT_COLUMN_HH
12
13 #include "axis-group-item.hh"
14
15
16 /**
17   Group dots.  This is needed because, the dots have to be aligned per voice
18  */
19 class Dot_column : public Axis_group_item
20 {
21   static int compare (Dots * const&,Dots * const&);
22   void add_dots (Dots*);
23 public:
24   VIRTUAL_COPY_CONS (Score_element);
25   void add_head (Rhythmic_head*);
26   Dot_column ();
27
28 protected:
29   virtual void after_line_breaking ();
30 };
31 #endif // DOT_COLUMN_HH