/*
- voiceelt.cc -- implement Voice_element
+ voice-elt.cc -- implement Voice_element
source file of the LilyPond music typesetter
#include "command-request.hh"
+void
+Voice_element::transpose(Melodic_req const&d)const
+{
+ for (iter_top(reqs,i); i.ok(); i++) {
+ i->transpose(d);
+ }
+}
+
void
Voice_element::print() const
{
#include "midi-stream.hh"
#include "voice-element.hh"
+void
+Voice::transpose(Melodic_req const & d)const
+{
+ for (iter_bot(elts, i); i.ok(); i--)
+ i->transpose(d);
+}
+
void
Voice::set_default_group(String s)
{