]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/page-spacing-result.hh
Run grand-replace (issue 3765)
[lilypond.git] / lily / include / page-spacing-result.hh
index ce12f7a52285a475bb36dfda302727325f36a754..d75dd9861626c72a9ba172c50028a1da1c14e99a 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2007--2010 Han-Wen Nienhuys <hanwen@lilypond.org>
+  Copyright (C) 2007--2014 Han-Wen Nienhuys <hanwen@lilypond.org>
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
 // 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,8 +44,7 @@ struct Page_spacing_result {
 
   Real average_force () const;
   vsize page_count () const;
-  vsize system_count () const;
-  void print () const;  
+  void print () const;
   Page_spacing_result ();
 };