]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/music-list.hh
* Another grand 2003 update.
[lilypond.git] / lily / include / music-list.hh
index 3f957eef8b1a6c88f8d31168ac7303cc03805ee9..1d74ba0438dc40230efe45075da409116419c3e0 100644 (file)
@@ -4,7 +4,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
@@ -21,22 +21,22 @@ class Simultaneous_music : public Music_sequence
 public:
   VIRTUAL_COPY_CONS (Music);
   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
+  The event is a collection of Events. A note that you enter in lilypond is 
+  one Event_chord, one syllable of lyrics is one Event_chord
  */
-class Request_chord : public Simultaneous_music
+class Event_chord : public Simultaneous_music
 {
 public:
   VIRTUAL_COPY_CONS (Music);
   virtual Moment start_mom () const;
 
-  Request_chord ();
+  Event_chord ();
 };
 
 /**
@@ -46,7 +46,7 @@ class Sequential_music : public Music_sequence
 {
 public:
   VIRTUAL_COPY_CONS (Music);
-  virtual Moment length_mom () const;
+  virtual Moment get_length () const;
   virtual Moment start_mom () const;
   
   Sequential_music ();