X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fswallow-perf.cc;h=2bd42dfa5cb44ea8cb69098b2895d7e98cc36dd8;hb=73b3cc9a021e7c2751eb00a9571f8c5d7b63a273;hp=7ff03f174f0999ced8f4bb31c4ca085902d42ac3;hpb=fc3e875d6bf06f0680e897faffdcab36ad975a03;p=lilypond.git diff --git a/lily/swallow-perf.cc b/lily/swallow-perf.cc index 7ff03f174f..2bd42dfa5c 100644 --- a/lily/swallow-perf.cc +++ b/lily/swallow-perf.cc @@ -1,13 +1,38 @@ /* - swallow-perf.cc -- implement Swallow_performer + swallow-performer.cc -- implement Swallow_performer source file of the GNU LilyPond music typesetter - (c) 1997--2001 Han-Wen Nienhuys + (c) 1997--2007 Han-Wen Nienhuys */ -#include "swallow-perf.hh" +#include "performer.hh" +#include "music.hh" +class Swallow_performer : public Performer +{ +public: + TRANSLATOR_DECLARATIONS (Swallow_performer); +protected: + virtual bool try_music (Music *); +}; +bool +Swallow_performer::try_music (Music *m) +{ + if (m->is_mus_type ("melisma-playing-event")) + return false; + else + return true; +} -ADD_THIS_TRANSLATOR (Swallow_performer); +Swallow_performer::Swallow_performer () +{} + +#include "translator.icc" + +ADD_TRANSLATOR (Swallow_performer, + /* doc */ "", + /* create */ "", + /* read */ "", + /* write */ "");