]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/column-x-positions.hh
release: 1.5.5
[lilypond.git] / lily / include / column-x-positions.hh
1 /*
2   column-x-positions.hh -- part of GNU LilyPond
3
4   (c)  1997--2001 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   Array<Real> config_;
18   Real force_f_;
19   bool satisfies_constraints_b_;
20
21   Column_x_positions ();
22 };
23
24
25 #endif // COLUMN_X_POSITIONS_HH
26