]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/colhpos.hh
release: 0.0.39-1
[lilypond.git] / lily / include / colhpos.hh
1 /*
2   colhpos.hh -- part of LilyPond
3
4   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
5 */
6
7 #ifndef COLHPOS_HH
8 #define COLHPOS_HH
9 #include "varray.hh"
10 #include "proto.hh"
11
12 typedef Array<PCol*>  Line_of_cols;
13
14 struct Col_hpositions {
15     Line_of_cols cols;
16     Array<Real> config;
17     Real energy;
18
19     /* ************** */
20     void OK()const;
21
22     Col_hpositions();
23     void add( PCol*c);
24     void print() const;
25 };
26
27
28 #endif // COLHPOS_HH
29