]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/score-column.cc
release: 0.1.9
[lilypond.git] / lily / score-column.cc
index 9accf652a91627ca76c088eb38f510092d909102..d6f4e739a5da518cbf77194882aba931e78121fb 100644 (file)
 
 Score_column::Score_column (Moment w)
 {
-    when_ = w;
-    musical_b_ = false;
+  when_ = w;
+  musical_b_ = false;
 }
 
 void
 Score_column::print() const
 {
 #ifndef NPRINT
-    DOUT << "Score_column { mus "<< musical_b_ <<" at " <<  when_<<'\n';
-    DOUT << "durations: [";
-    for (int i=0; i < durations.size(); i++)
+  DOUT << "Score_column { mus "<< musical_b_ <<" at " <<  when_<<'\n';
+  DOUT << "durations: [";
+  for (int i=0; i < durations.size(); i++)
        DOUT << durations[i] << " ";
-    DOUT << "]\n";
-    PCol::print();
-    DOUT << "}\n";
+  DOUT << "]\n";
+  PCol::print();
+  DOUT << "}\n";
 #endif
 }
 
 int
 Moment_compare (Moment const &m1, Moment const &m2)
 {
-    return sign (m1-m2);
+  return sign (m1-m2);
 }
 
 void
 Score_column::preprocess()
 {
-    durations.sort (Moment_compare);
+  durations.sort (Moment_compare);
 }
 
 void
 Score_column::add_duration (Moment d)
 {
-    assert (d);
-    for (int i = 0; i< durations.size(); i++) {
+  assert (d);
+  for (int i = 0; i< durations.size(); i++) 
+    {
        if (d == durations[i])
            return ;
     }
-    durations.push (d);
+  durations.push (d);
 }
 
 void
 Score_column::do_set_breakable()
 {
-    Score_column *c1 = new Score_column (when_);
-    Score_column *c2 = new Score_column (when_);
-    prebreak_p_ =c1;
-    postbreak_p_ = c2;
-    c1->durations = durations;
-    c2->durations = durations;
-    c1->musical_b_ 
+  Score_column *c1 = new Score_column (when_);
+  Score_column *c2 = new Score_column (when_);
+  prebreak_p_ =c1;
+  postbreak_p_ = c2;
+  c1->durations = durations;
+  c2->durations = durations;
+  c1->musical_b_ 
        = c2->musical_b_ = musical_b_;
 }