]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dot-column.hh
patch::: 1.3.93.jcn2
[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 "lily-guile.hh"
14
15 /**
16   Group dots.  This is needed because, the dots have to be aligned per voice
17  */
18 class Dot_column                // interface
19 {
20 public:
21   static int compare (Score_element * const&,Score_element * const&);
22   static void add_head (Score_element * dotcol, Score_element* rh );
23   static void set_interface (Score_element*);
24   static bool has_interface (Score_element*);
25   static SCM force_shift_callback (SCM,SCM);
26   static SCM do_shifts (SCM dotlist);
27 };
28 #endif // DOT_COLUMN_HH