]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/relative-octave-music.cc
*** empty log message ***
[lilypond.git] / lily / relative-octave-music.cc
index dc0fc9906c006e15bc69658ce65c6fe4693235b7..b57f2a2ef68574f9a3d018655b98fc88e445bf16 100644 (file)
@@ -3,36 +3,22 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #include "relative-music.hh"
-#include "debug.hh"
+#include "warn.hh"
 
-Musical_pitch
-Relative_octave_music::to_relative_octave (Musical_pitch)
+Pitch
+Relative_octave_music::to_relative_octave (Pitch)
 {
-  return last_pitch_;
+  return * unsmob_pitch (get_mus_property ("last-pitch"));
 }
 
-Music_iterator*
-Relative_octave_music::to_rhythm (Music_iterator* r)
-{
-  return element_l ()->to_rhythm (r);
-}
-
-Relative_octave_music::Relative_octave_music(Music*p,Musical_pitch def)
-  : Music_wrapper (p)
-{
-  last_pitch_ = element_l ()->to_relative_octave (def);
-}
 
-void
-Relative_octave_music::do_print () const
+Relative_octave_music::Relative_octave_music ()
 {
-  Music_wrapper::do_print ();
-  DOUT << "default pitch: " << last_pitch_.str ();
 }
 
-
+ADD_MUSIC (Relative_octave_music);