]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/transposed-music.cc
* scm/output-svg.scm:
[lilypond.git] / lily / transposed-music.cc
index e22f19f8f29ada555018444fd7c112220a5b4ff0..d2c1166a2128a7f58c121b54c9f7f7b2eab57ebe 100644 (file)
@@ -3,27 +3,22 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #include "transposed-music.hh"
-#include "debug.hh"
-
-Transposed_music::Transposed_music (Music *p, Musical_pitch pit)
-  : Music_wrapper (p)
-{
-  transpose_to_pitch_ = pit;
-  p->transpose (pit);
-  set_mus_property ("type", ly_symbol2scm ("transposed-music"));
-}
 
+#include "warn.hh"
 
-Musical_pitch
-Transposed_music::to_relative_octave (Musical_pitch p)
+Pitch
+Transposed_music::to_relative_octave (Pitch p)
 {
   return p;
 }
 
+ADD_MUSIC (Transposed_music);
+Transposed_music::Transposed_music ()
+{
 
-
+}