]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/lyric-engraver.hh
release: 1.3.48
[lilypond.git] / lily / include / lyric-engraver.hh
index 15b5f510e04b345e904921edd027366371a51dcf..1ef2eb7490c1ea1bdd45bddf27d880452b6626bc 100644 (file)
@@ -3,32 +3,36 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #ifndef LYRIC_ENGRAVER_HH
 #define LYRIC_ENGRAVER_HH
-#include "engraver.hh"
-#include "array.hh"
 
 #include "lily-proto.hh"
+#include "engraver.hh"
+#include "array.hh"
 
+/**
+   Generate texts for lyric syllables.  We only do one lyric at a time.  
+   Multiple copies of this engraver should be used to do multiple voices.
+ */
 class Lyric_engraver : public Engraver 
 {
 protected:
   virtual void do_pre_move_processing();
   virtual bool do_try_music (Music*);
-  virtual void do_process_requests();
-  virtual void do_post_move_processing();
-
+  virtual void do_process_music();
+  virtual void do_post_move_processing ();
 public:
-  Lyric_engraver();
-  VIRTUAL_COPY_CONS(Translator);
+  Lyric_engraver ();
+  VIRTUAL_COPY_CONS (Translator);
 
 private:
-  Link_array<Lyric_req> lyric_req_l_arr_;
-  Link_array<Text_item> text_p_arr_;
+  Lyric_req * req_l_;
+  Text_item* text_p_;
 };
 
+
 #endif // LYRIC_ENGRAVER_HH