]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/music-wrapper.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / music-wrapper.hh
index 7c60c91dda101833123311d7226f05b6c2282c4d..94b2a3165ec91167899c2cc49849d432934dfafa 100644 (file)
@@ -1,34 +1,22 @@
-/*   
+/*
   music-wrapper.hh -- declare Music_wrapper
-  
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
+
+  (c) 1998--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
 
 #ifndef MUSIC_WRAPPER_HH
 #define MUSIC_WRAPPER_HH
 
-#include "music.hh"
-#include "musical-pitch.hh"
+#include "lily-guile.hh"
 
-class Music_wrapper : public Music
+struct Music_wrapper
 {
 public:
-  Music * element_p_;
-  Music_wrapper (Music*);
-  virtual void transpose (Musical_pitch);
-  virtual void do_print () const;
-  DECLARE_MY_RUNTIME_TYPEINFO;
-  VIRTUAL_COPY_CONS (Music_wrapper, Music);
-  Music_wrapper (Music_wrapper const&);
-  virtual Moment  duration () const;
-  virtual ~Music_wrapper ();
+  DECLARE_SCHEME_CALLBACK (length_callback, (SCM));
+  DECLARE_SCHEME_CALLBACK (start_callback, (SCM));
 };
 
-
-
-
 #endif /* MUSIC_WRAPPER_HH */