X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fswallow-perf.cc;h=907b41de171e75e701fa1f1289f7c62441278af4;hb=de451af43aef0220738bfdd5329f0685bdaba3d2;hp=f30476092a0a25237fbfe04c9b240ca993b28b36;hpb=7aabfb20c46e0a1de41698ddc6859ccd3a6dea85;p=lilypond.git diff --git a/lily/swallow-perf.cc b/lily/swallow-perf.cc index f30476092a..907b41de17 100644 --- a/lily/swallow-perf.cc +++ b/lily/swallow-perf.cc @@ -1,28 +1,46 @@ /* - swallow-perf.cc -- implement Swallow_performer + swallow-performer.cc -- implement Swallow_performer source file of the GNU LilyPond music typesetter - (c) 1997--2003 Han-Wen Nienhuys + (c) 1997--2007 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*/ "", -/* accepts */ "general-music", -/* acks */ "", -/* reads */ "", -/* write */ ""); +#include "translator.icc" + +ADD_TRANSLATOR (Swallow_performer, + /* doc */ + "", + + /* create */ + "", + + /* read */ + "", + + /* write */ + "" + );