]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/music-wrapper.hh
patch::: 1.1.19.jcn5: isb
[lilypond.git] / lily / include / music-wrapper.hh
index 989fb5fd0c4186b5f2ef7d3a9d9e67bd53cc556c..26fea0ec7bec649bdb8e482bb6dc31f072194df0 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998 Han-Wen Nienhuys <hanwen@cs.ruu.nl>
+  (c) 1998 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_;
+public:
   Music_wrapper (Music*);
+  Music * element_l () const;
   virtual void transpose (Musical_pitch);
   virtual void do_print () const;
-  DECLARE_MY_RUNTIME_TYPEINFO;
-  VIRTUAL_COPY_CONS (Music_wrapper, Music);
+  
+  VIRTUAL_COPY_CONS(Music);
   Music_wrapper (Music_wrapper const&);
-  virtual MInterval time_int () const;
+  virtual Moment duration () const;
   virtual ~Music_wrapper ();
+  virtual Musical_pitch to_relative_octave (Musical_pitch);
+  
 };
 
 
 
+
 #endif /* MUSIC_WRAPPER_HH */