]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/music-list.hh
2003 -> 2004
[lilypond.git] / lily / include / music-list.hh
index a874660322b87cfea8c734bfbc2b844a6667f883..e9fc937584a8812e35f2b57210f36a8ff1d9350c 100644 (file)
@@ -4,7 +4,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
@@ -20,26 +20,20 @@ class Simultaneous_music : public Music_sequence
 {
 public:
   VIRTUAL_COPY_CONS (Music);
-  Simultaneous_music (SCM);
   virtual Pitch to_relative_octave (Pitch);
-  virtual Moment length_mom () const;
+  virtual Moment get_length () const;
   virtual Moment start_mom () const;
   Simultaneous_music ();
 };
 
-/**
-  The request is a collection of Requests. A note that you enter in lilypond is 
-  one Request_chord, one syllable of lyrics is one Request_chord
+/*
+  A chord.
  */
-class Request_chord : public Simultaneous_music
+class Event_chord : public Simultaneous_music
 {
 public:
   VIRTUAL_COPY_CONS (Music);
   virtual Pitch to_relative_octave (Pitch);
-  virtual Moment start_mom () const;
-  Request_chord (SCM list);
-
-  Request_chord ();
 };
 
 /**
@@ -49,8 +43,7 @@ class Sequential_music : public Music_sequence
 {
 public:
   VIRTUAL_COPY_CONS (Music);
-  Sequential_music (SCM);
-  virtual Moment length_mom () const;
+  virtual Moment get_length () const;
   virtual Moment start_mom () const;
   
   Sequential_music ();