]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/page-spacing-result.hh
Merge branch 'master' of ssh+git://hanwen@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / lily / include / page-spacing-result.hh
1 /* 
2   page-spacing-result.hh -- declare  Page_spacing_result
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 2007 Han-Wen Nienhuys <hanwen@lilypond.org>
7   
8 */
9
10 #ifndef PAGE_SPACING_RESULT_HH
11 #define PAGE_SPACING_RESULT_HH
12
13 #include "std-vector.hh"
14 #include "lily-proto.hh"
15
16 struct Page_spacing_result {
17   vector<vsize> systems_per_page_;
18   vector<Real> force_;
19   Real penalty_;
20   Real demerits_;
21
22   vsize system_count () const;  
23   Page_spacing_result ();
24 };
25
26 #endif /* PAGE_SPACING_RESULT_HH */