#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)
}
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 )
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
}