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