X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fswallow-perf.cc;h=c374d78675642ceaad4b7218a4b592682b14f678;hb=9fe1f948145ed4ae347b2a2cc50b0594c7b15a64;hp=6d8c55936eac5154d682ea74c05ca72e1ab3fcda;hpb=cec6dfa6bf0fb931eb7f42b1ee44ca2ec19a9f34;p=lilypond.git diff --git a/lily/swallow-perf.cc b/lily/swallow-perf.cc index 6d8c55936e..c374d78675 100644 --- a/lily/swallow-perf.cc +++ b/lily/swallow-perf.cc @@ -3,11 +3,25 @@ source file of the GNU LilyPond music typesetter - (c) 1997 Han-Wen Nienhuys + (c) 1997--2002 Han-Wen Nienhuys */ -#include "swallow-perf.hh" +#include "performer.hh" +class Swallow_performer : public Performer +{ +public: + TRANSLATOR_DECLARATIONS(Swallow_performer); +protected: + virtual bool try_music (Music*) { return true; } +}; -IMPLEMENT_IS_TYPE_B1(Swallow_performer, Performer); -ADD_THIS_TRANSLATOR(Swallow_performer); +Swallow_performer::Swallow_performer() +{} + +ENTER_DESCRIPTION(Swallow_performer, +/* descr */ "", +/* creats*/ "", +/* acks */ "", +/* reads */ "", +/* write */ "");