]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/relative-octave-music.cc
Fix [a8 a32].
[lilypond.git] / lily / relative-octave-music.cc
index db24b85fc0d12ca57025970b346d675d8c40db20..14890694c3efad70de98e64c9038af43714ad49d 100644 (file)
@@ -3,31 +3,29 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2002 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"));
 }
 
 
-Relative_octave_music::Relative_octave_music(Music*p,Musical_pitch def)
-  : Music_wrapper (p)
+Relative_octave_music::Relative_octave_music (SCM l)
+  : Music_wrapper (l)
 {
-  last_pitch_ = element_p_->to_relative_octave (def);
+  set_mus_property ("type", ly_symbol2scm ("relative-octave-music"));  
 }
 
-void
-Relative_octave_music::do_print () const
+Relative_octave_music::Relative_octave_music ()
 {
-  Music_wrapper::do_print ();
-  DOUT << "default pitch: " << last_pitch_.str ();
+  set_mus_property ("type", ly_symbol2scm ("relative-octave-music"));
 }
 
-IMPLEMENT_IS_TYPE_B1 (Relative_octave_music, Music_wrapper);
+ADD_MUSIC (Relative_octave_music);