]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/music-wrapper.hh
release: 1.3.73
[lilypond.git] / lily / include / music-wrapper.hh
index cdecc0b5bafdaad4ddb24354c6da80ef46a0b6fe..76987deac5827e9dadaa45efe388fdb664105cc5 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #include "music.hh"
 #include "musical-pitch.hh"
 
+/** A Music that modifies an existing Music.  This data structure
+  corresponds to a production that takes a single Music argument,
+  
+  Music: STUFF Music 
+
+  */
 class Music_wrapper : public Music
 {
 public:
-  Music * element_p_;
   Music_wrapper (Music*);
+  Music * element () const;
   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 MInterval time_int () const;
-  virtual ~Music_wrapper ();
+  
+  VIRTUAL_COPY_CONS(Music);
+  virtual Moment length_mom () const;
+  virtual Musical_pitch to_relative_octave (Musical_pitch);
+  virtual void compress (Moment);
 };
 
 
 
+
 #endif /* MUSIC_WRAPPER_HH */