X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fcoherent-ligature-engraver.hh;h=879f6ba5db0e8a1f0635f72535caa0a54f9c5e04;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=8321e727eef3a78bbe7bc8e5516595014115ae02;hpb=011366cd352bf329f9103c099aabd9e54ad92366;p=lilypond.git diff --git a/lily/include/coherent-ligature-engraver.hh b/lily/include/coherent-ligature-engraver.hh index 8321e727ee..879f6ba5db 100644 --- a/lily/include/coherent-ligature-engraver.hh +++ b/lily/include/coherent-ligature-engraver.hh @@ -1,11 +1,10 @@ -/* +/* coherent-ligature-engraver.hh -- declare Coherent_ligature_engraver - + source file of the GNU LilyPond music typesetter - - (c) 2003 Juergen Reuter - - */ + + (c) 2003--2008 Juergen Reuter +*/ #ifndef COHERENT_LIGATURE_ENGRAVER_HH #define COHERENT_LIGATURE_ENGRAVER_HH @@ -13,19 +12,18 @@ class Coherent_ligature_engraver : public Ligature_engraver { - public: - TRANSLATOR_DECLARATIONS(Coherent_ligature_engraver); + // no TRANSLATOR_DECLARATIONS (Coherent_ligature_engraver) needed + // since this class is abstract protected: virtual void build_ligature (Spanner *ligature, - Array primitives); /* abstract */ + vector primitives) = 0; virtual void typeset_ligature (Spanner *ligature, - Array primitives); - virtual void get_set_column (Item *, Paper_column *); - + vector primitives); + virtual void move_related_items_to_column (Item *, Paper_column *, Real); private: - void collect_accidentals (Spanner *, Array); + void collect_accidentals (Spanner *, vector); }; #endif // COHERENT_LIGATURE_ENGRAVER_HH