]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/music-sequence.hh
* Another grand 2003 update.
[lilypond.git] / lily / include / music-sequence.hh
index b22d029582cee9a313e472f712b9ec531b2ffe67..fd4e6225961a0f702436cd0eb1af788e0ac94bf6 100644 (file)
@@ -1,11 +1,9 @@
-
-
 /*   
-  music-sequence.hh -- declare 
+  music-sequence.hh -- declare Music_sequence
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 2000--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  2000--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
@@ -25,19 +23,18 @@ public:
   VIRTUAL_COPY_CONS (Music);
   
   Pitch do_relative_octave (Pitch p, bool b);
+  static void transpose_list (SCM , Pitch);
+  static void compress_list (SCM, Moment);
+  
   virtual void transpose (Pitch );
-  void truncate (int k);
   virtual void compress (Moment);
-  int length_i () const;
-  Moment cumulative_length () const;
-  Moment maximum_length () const;
 
-  Moment first_start () const;
-  Moment minimum_start () const;
+  static Moment cumulative_length (SCM) ;
+  static Moment maximum_length (SCM) ;
+  static Moment first_start (SCM list) ;
+  static Moment minimum_start (SCM list);
   
 protected:
   virtual Pitch to_relative_octave (Pitch);
-
-
 };
 #endif