]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/break-algorithm.hh
* The grand 2005-2006 replace.
[lilypond.git] / lily / include / break-algorithm.hh
index 570307b1ec2bb681bd44960741636aeba2a7920a..829c1fc91bef4f6895970e62f6f6bc6677474bc0 100644 (file)
@@ -1,43 +1,42 @@
 /*
-  break-algorithm.hh -- declare  Break_algorithm
+  break-algorithm.hh -- declare Break_algorithm
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1996--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1996--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
-
 #ifndef BREAK_HH
 #define BREAK_HH
 
 #include "interval.hh"
 #include "column-x-positions.hh"
 
-
 /** Class representation of an algorithm which decides where to put
-  the column, and where to break lines.
+    the column, and where to break lines.
 
-  JUNKME.
-  
-  */
-class Break_algorithm {
+    JUNKME.
+*/
+class Break_algorithm
+{
 protected:
   Paper_score *pscore_;
   Real linewidth_;
 
   Link_array<Grob> find_breaks () const;
   Array<int> find_break_indices () const;
-  void solve_line (Column_x_positions*) const;
+  void solve_line (Column_x_positions *) const;
   bool feasible (Link_array<Grob> const &) const;
 
-  Simple_spacer_wrapper* generate_spacing_problem (Link_array<Grob> const &, Interval) const;
-
+  Simple_spacer_wrapper *generate_spacing_problem (Link_array<Grob> const &,
+                                                  Interval) const;
   virtual Array<Column_x_positions> do_solve () const = 0;
 
 public:
-  Simple_spacer* (*get_line_spacer) ();
+  virtual ~Break_algorithm ();
+  Simple_spacer *(*get_line_spacer) ();
   Break_algorithm ();
-  void set_pscore (Paper_score*);
+  void set_pscore (Paper_score *);
   Array<Column_x_positions> solve () const;
 };