2 sccol.hh -- part of LilyPond
4 (c) 1996 Han-Wen Nienhuys
21 Score_column(Real when
);
23 static int compare(Score_column
& c1
, Score_column
&c2
) {
24 return sgn(c1
.when
- c2
.when
);
26 void set_breakable() {
27 pcol
->set_breakable();
34 When typesetting hasn't started on PScore yet, the columns which
35 contain data have a rhythmical position. Score_column is the type
36 with a rhythmical time attached to it. The calculation of
37 idealspacing is done with data in these columns. (notably: the
42 instantiate_compare(Score_column
&, Score_column::compare
);