]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.110
authorfred <fred>
Wed, 27 Mar 2002 00:40:10 +0000 (00:40 +0000)
committerfred <fred>
Wed, 27 Mar 2002 00:40:10 +0000 (00:40 +0000)
lily/include/lyric-engraver.hh [deleted file]

diff --git a/lily/include/lyric-engraver.hh b/lily/include/lyric-engraver.hh
deleted file mode 100644 (file)
index 455ed51..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
-  lyric-engraver.hh -- declare Lyric_engraver
-
-  source file of the GNU LilyPond music typesetter
-
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-
-#ifndef LYRIC_ENGRAVER_HH
-#define LYRIC_ENGRAVER_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 stop_translation_timestep();
-  virtual bool try_music (Music*);
-  void deprecated_process_music();
-  virtual void start_translation_timestep ();
-public:
-  Lyric_engraver ();
-  VIRTUAL_COPY_CONS (Translator);
-
-private:
-  Lyric_req * req_l_;
-  Item* text_p_;
-};
-
-
-#endif // LYRIC_ENGRAVER_HH