]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/transposed-music.cc
*** empty log message ***
[lilypond.git] / lily / transposed-music.cc
index 74aa3006ec3b0a1f4c443226fd79b4fd9612a24d..cad98f8eac9521f182436afc76256a52d8430d32 100644 (file)
@@ -3,21 +3,12 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #include "transposed-music.hh"
-#include "debug.hh"
-
-Transposed_music::Transposed_music (Music *p, Pitch pit)
-  : Music_wrapper (p)
-{
-  transpose_to_pitch_ = pit;
-  p->transpose (pit);
-  set_mus_property ("type", ly_symbol2scm ("transposed-music"));
-}
-
+#include "warn.hh"
 
 Pitch
 Transposed_music::to_relative_octave (Pitch p)
@@ -25,5 +16,8 @@ Transposed_music::to_relative_octave (Pitch p)
   return p;
 }
 
+ADD_MUSIC (Transposed_music);
+Transposed_music::Transposed_music ()
+{
 
-
+}