]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/column-x-positions.hh
* lily/rest.cc (polyphonic_offset_callback): new function. Do
[lilypond.git] / lily / include / column-x-positions.hh
1 /*
2   column-x-positions.hh -- part of GNU LilyPond
3
4   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
5 */
6
7 #ifndef COLUMN_X_POSITIONS_HH
8 #define COLUMN_X_POSITIONS_HH
9
10 #include "parray.hh"
11 #include "lily-proto.hh"
12
13
14 struct Column_x_positions
15 {
16   Link_array<Grob> cols_;
17   Link_array<Grob> loose_cols_;
18   
19   Array<Real> config_;
20   Real force_;
21   bool satisfies_constraints_;
22
23   Column_x_positions ();
24 };
25
26
27 #endif // COLUMN_X_POSITIONS_HH
28