]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/gregorian-ligature-engraver.hh
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / include / gregorian-ligature-engraver.hh
index efcb73ae16e8840d47ad179b38f21d269c9d5295..96b87f84f24090687b99ac6d97ea16f8504ff1ce 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2003--2005 Juergen Reuter <reuter@ipd.uka.de>
+  (c) 2003--2006 Juergen Reuter <reuter@ipd.uka.de>
 */
 #ifndef GREGORIAN_LIGATURE_ENGRAVER_HH
 #define GREGORIAN_LIGATURE_ENGRAVER_HH
@@ -15,13 +15,15 @@ class Gregorian_ligature_engraver : public Coherent_ligature_engraver
   Music *pes_or_flexa_req_;
 
 public:
-  TRANSLATOR_DECLARATIONS (Gregorian_ligature_engraver);
+  // no TRANSLATOR_DECLARATIONS (Gregorian_ligature_engraver) needed
+  // since this class is abstract
 
 protected:
+  Gregorian_ligature_engraver ();
   virtual bool try_music (Music *);
-  virtual void build_ligature (Spanner *ligature, Array<Grob_info> primitives);
+  virtual void build_ligature (Spanner *ligature, vector<Grob_info> primitives);
   virtual void transform_heads (Spanner *ligature,
-                               Array<Grob_info> primitives); /* abstract method */
+                               vector<Grob_info> primitives) = 0;
   void stop_translation_timestep ();
 };