]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/column-x-positions.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / column-x-positions.hh
1 /*
2   column-x-positions.hh -- part of GNU LilyPond
3
4   (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
5 */
6
7 #ifndef COLUMN_X_POSITIONS_HH
8 #define COLUMN_X_POSITIONS_HH
9
10 #include "std-vector.hh"
11 #include "lily-proto.hh"
12
13 struct Column_x_positions
14 {
15   vector<Grob*> cols_;
16   vector<Grob*> loose_cols_;
17
18   vector<Real> config_;
19   Real force_;
20   bool satisfies_constraints_;
21
22   Column_x_positions ();
23 };
24
25 #endif // COLUMN_X_POSITIONS_HH
26