]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/score-column.cc
release: 1.3.14
[lilypond.git] / lily / score-column.cc
index 9744e3106a1a03a58dad199477748d4e7aa09c5f..40363f393e1c264c53bc6b479c5c455a9540f3a0 100644 (file)
@@ -1,38 +1,7 @@
 /*
-  score-column.cc -- implement Score_column
+  score-column.cc -- implement Paper_column
 
   source file of the GNU LilyPond music typesetter
 
   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
-
-#include "debug.hh"
-#include "p-col.hh"
-#include "score-column.hh"
-#include "command-request.hh"
-
-Score_column::Score_column (Moment w)
-{
-  break_penalty_i_ = 0;
-  when_ = w;
-}
-
-void
-Score_column::do_print() const
-{
-#ifndef NPRINT
-  DOUT << " at " <<  when_ << '\n';
-  if (break_penalty_i_ >= Break_req::FORCE)
-    DOUT << "Break forced";
-
-  DOUT << "Shortest playing: " <<  shortest_playing_mom_ << " shortest starter: " << shortest_starter_mom_;
-  Paper_column::do_print();
-#endif
-}
-
-
-bool
-Score_column::musical_b () const
-{
-  return shortest_starter_mom_ != Moment(0);
-}