]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/music-wrapper.cc
2003 -> 2004
[lilypond.git] / lily / music-wrapper.cc
index 6c5623767f34fe4f5eff221c03d4b86f8da1f261..8118cc23aeb9969af6319159b9fdddb7537886df 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 
 
 
-void
-Music_wrapper::transpose (Pitch p)
-{
-  if (element ())
-    element ()-> transpose (p);
-}
-
-
 Music_wrapper::Music_wrapper ()
   : Music ()
 {
@@ -32,24 +24,12 @@ Music_wrapper::get_length () const
   return element ()->get_length ();
 }
 
-Pitch
-Music_wrapper::to_relative_octave (Pitch p)
-{
-  return element ()->to_relative_octave (p);
-}
-
-
 Music*
 Music_wrapper::element () const
 {
   return unsmob_music (get_mus_property ("element"));
 }
 
-void
-Music_wrapper::compress (Moment m)
-{
-  element ()->compress (m);
-}
 
 ADD_MUSIC (Music_wrapper);