]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/music-wrapper.hh
2003 -> 2004
[lilypond.git] / lily / include / music-wrapper.hh
index 76987deac5827e9dadaa45efe388fdb664105cc5..aa7b53937a414bfe3d77fc9c0ee8c889f764cf71 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
@@ -11,7 +11,7 @@
 #define MUSIC_WRAPPER_HH
 
 #include "music.hh"
-#include "musical-pitch.hh"
+#include "pitch.hh"
 
 /** A Music that modifies an existing Music.  This data structure
   corresponds to a production that takes a single Music argument,
 class Music_wrapper : public Music
 {
 public:
-  Music_wrapper (Music*);
+  Music_wrapper ();
   Music * element () const;
-  virtual void transpose (Musical_pitch);
-  virtual void do_print () const;
   
-  VIRTUAL_COPY_CONS(Music);
-  virtual Moment length_mom () const;
-  virtual Musical_pitch to_relative_octave (Musical_pitch);
-  virtual void compress (Moment);
+  VIRTUAL_COPY_CONS (Music);
+  virtual Moment get_length () const;
+  virtual Moment start_mom () const;
 };