]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/grace-music.cc
Run `make grand-replace'.
[lilypond.git] / lily / grace-music.cc
index 8fd0ff0d0b8c6cb0ab8da2346de6cec0bf2b8dd3..899dae7dcff1c55e582e93133db6da566845cc24 100644 (file)
@@ -1,49 +1,26 @@
-/*   
-  grace-music.cc --  implement Grace_music
-  
+/*
+  grace-music.cc -- implement Grace_music
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 1999--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
 
-#include "grace-music.hh"
-#include "grace-iterator.hh"
+  (c) 1999--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
 
-void
-Grace_music::compress (Moment m) 
-{
-  Music_wrapper::compress (m); 
-}
+#include "music.hh"
+#include "music-wrapper.hh"
 
-Moment
-Grace_music::length_mom () const
+class Grace_music
 {
-  Moment m ;
-  return m;
-}
-
+public:
+  DECLARE_SCHEME_CALLBACK (start_callback, (SCM));
+};
 
-Moment
-Grace_music::start_mom () const
+MAKE_SCHEME_CALLBACK (Grace_music, start_callback, 1);
+SCM
+Grace_music::start_callback (SCM m)
 {
-  Moment l = Music_wrapper::length_mom ();
+  Moment *l = unsmob_moment (Music_wrapper::length_callback (m));
   Moment gl;
-  gl.grace_part_ = -(l.main_part_ + l.grace_part_ );
-  return gl;
-}
-
-Grace_music::Grace_music ()
-{
-  set_mus_property ("iterator-ctor",
-                   Grace_iterator::constructor_cxx_function);
-}
-
-Grace_music::Grace_music (SCM p)
-  : Music_wrapper (p)
-{
-  set_mus_property ("iterator-ctor",
-                   Grace_iterator::constructor_cxx_function);
+  gl.grace_part_ = -(l->main_part_ + l->grace_part_);
+  return gl.smobbed_copy ();
 }
-
-ADD_MUSIC (Grace_music);