X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fswallow-perf.cc;h=595b2a99d69d9a90bfc5c3e029b58b2779ad46ef;hb=9ac6b17dfcca6826c8ab3ea5d65b789086ae15e0;hp=e70149069f4d876430422099d9c50e4fa2836653;hpb=304b5f3aa7eee7b0ff8d4ba7526a1410735f6e74;p=lilypond.git diff --git a/lily/swallow-perf.cc b/lily/swallow-perf.cc index e70149069f..595b2a99d6 100644 --- a/lily/swallow-perf.cc +++ b/lily/swallow-perf.cc @@ -1,38 +1,38 @@ /* - swallow-perf.cc -- implement Swallow_performer + swallow-performer.cc -- implement Swallow_performer source file of the GNU LilyPond music typesetter - (c) 1997--2004 Han-Wen Nienhuys + (c) 1997--2006 Han-Wen Nienhuys */ #include "performer.hh" +#include "music.hh" class Swallow_performer : public Performer { public: TRANSLATOR_DECLARATIONS (Swallow_performer); protected: - virtual bool try_music (Music*); + virtual bool try_music (Music *); }; bool Swallow_performer::try_music (Music *m) { - if (m->is_mus_type ("busy-playing-event") - || m->is_mus_type ("melisma-playing-event")) + if (m->is_mus_type ("melisma-playing-event")) return false; else - return true; + 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 */ "");