]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/column-x-positions.hh
2905ce7a7af1d8ad759fa9c4e6f73916548648d4
[lilypond.git] / lily / include / column-x-positions.hh
1 /*
2   column-x-positions.hh -- part of GNU LilyPond
3
4   (c) 1997--2005 Han-Wen Nienhuys <hanwen@xs4all.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 struct Column_x_positions
14 {
15   Link_array<Grob> cols_;
16   Link_array<Grob> loose_cols_;
17
18   Array<Real> config_;
19   Real force_;
20   bool satisfies_constraints_;
21
22   Column_x_positions ();
23 };
24
25 #endif // COLUMN_X_POSITIONS_HH
26