X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fswallow-perf.cc;h=d24b9339a490d8c5ad754146b171a2bedcfacbbc;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=c374d78675642ceaad4b7218a4b592682b14f678;hpb=d9b43b93f2c885409bafdb157138158f65cc49aa;p=lilypond.git diff --git a/lily/swallow-perf.cc b/lily/swallow-perf.cc index c374d78675..d24b9339a4 100644 --- a/lily/swallow-perf.cc +++ b/lily/swallow-perf.cc @@ -1,27 +1,46 @@ /* - swallow-perf.cc -- implement Swallow_performer + swallow-performer.cc -- implement Swallow_performer source file of the GNU LilyPond music typesetter - (c) 1997--2002 Han-Wen Nienhuys + (c) 1997--2008 Han-Wen Nienhuys */ #include "performer.hh" +#include "music.hh" class Swallow_performer : public Performer { public: - TRANSLATOR_DECLARATIONS(Swallow_performer); + TRANSLATOR_DECLARATIONS (Swallow_performer); protected: - virtual bool try_music (Music*) { return true; } + virtual bool try_music (Music *); }; -Swallow_performer::Swallow_performer() +bool +Swallow_performer::try_music (Music *m) +{ + if (m->is_mus_type ("melisma-playing-event")) + return false; + else + return true; +} + +Swallow_performer::Swallow_performer () {} -ENTER_DESCRIPTION(Swallow_performer, -/* descr */ "", -/* creats*/ "", -/* acks */ "", -/* reads */ "", -/* write */ ""); +#include "translator.icc" + +ADD_TRANSLATOR (Swallow_performer, + /* doc */ + "", + + /* create */ + "", + + /* read */ + "", + + /* write */ + "" + );