]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.38
authorfred <fred>
Sun, 24 Mar 2002 19:34:19 +0000 (19:34 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:34:19 +0000 (19:34 +0000)
src/voice.cc

index ad07cf2040acbac7375f11cd385801abb910a01b..6301f299451916d676a84c934e8ecf4d74dda6c3 100644 (file)
@@ -10,8 +10,9 @@
 #include "voice.hh"
 #include "musicalrequest.hh"
 #include "commandrequest.hh"
-#include "midiitem.hh"
-#include "midistream.hh"
+#include "midi-item.hh"
+#include "midi-stream.hh"
+#include "voice-element.hh"
 
 void
 Voice::set_default_group(String s)
@@ -29,7 +30,8 @@ Voice::find_plet_start_bo(char c, Moment& moment_r)
 }
 
 void 
-Voice::set_plet_backwards(Moment& now_moment_r, Moment until_moment, int num_i, int den_i)
+Voice::set_plet_backwards(Moment& now_moment_r, Moment until_moment,
+                         int num_i, int den_i)
 {
     for (iter_bot(elts, i); i.ok(); i--) 
        if ( now_moment_r <= until_moment ) 
@@ -62,9 +64,10 @@ void
 Voice::print() const
 {
 #ifndef NPRINT
-    mtor << "start: "<< start<<eol;
+    mtor << "Voice { start: "<< start<<eol;
     for (iter_top(elts,i); i.ok(); i++)
        i->print();
+    mtor << "}\n";
 #endif
 }