]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/page-spacing-result.hh
Uses langdefs.py for make website
[lilypond.git] / lily / include / page-spacing-result.hh
index 6d32bc6c2bc2752f2ac6d9552f98956b4382e5da..8f1f836af680e5c5cffab0e11682664b014471eb 100644 (file)
 // to represent the system count of several pages simultaneously,
 // it could be that one page has too many systems while another
 // has too few.
-typedef enum {
+typedef enum
+{
   SYSTEM_COUNT_OK = 0,
   SYSTEM_COUNT_TOO_MANY = 1,
   SYSTEM_COUNT_TOO_FEW = 2
 } System_count_status;
 
-struct Page_spacing_result {
+struct Page_spacing_result
+{
   vector<vsize> systems_per_page_;
   vector<Real> force_;
   Real penalty_;
@@ -42,7 +44,7 @@ struct Page_spacing_result {
 
   Real average_force () const;
   vsize page_count () const;
-  void print () const;  
+  void print () const;
   Page_spacing_result ();
 };