From 76436dc159fee063a4a9f0cce1297b3af3f36ca4 Mon Sep 17 00:00:00 2001 From: fred Date: Wed, 23 Jul 1997 21:36:14 +0000 Subject: [PATCH] lilypond-0.0.76 --- lily/include/swallow-perf.hh | 21 +++++++++++++++++++++ lily/swallow-perf.cc | 13 +++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 lily/include/swallow-perf.hh create mode 100644 lily/swallow-perf.cc diff --git a/lily/include/swallow-perf.hh b/lily/include/swallow-perf.hh new file mode 100644 index 0000000000..7c6ec8d4ae --- /dev/null +++ b/lily/include/swallow-perf.hh @@ -0,0 +1,21 @@ +/* + swallow-perf.hh -- declare Swallow_performer + + source file of the GNU LilyPond music typesetter + + (c) 1997 Han-Wen Nienhuys +*/ + + +#ifndef SWALLOW_PERF_HH +#define SWALLOW_PERF_HH + +#include "performer.hh" + +class Swallow_performer : public Performer { +public: + NAME_MEMBERS(); + virtual bool try_request (Request* ) { return true; } +}; + +#endif // SWALLOW_PERF_HH diff --git a/lily/swallow-perf.cc b/lily/swallow-perf.cc new file mode 100644 index 0000000000..7bdb355adc --- /dev/null +++ b/lily/swallow-perf.cc @@ -0,0 +1,13 @@ +/* + swallow-perf.cc -- implement Swallow_performer + + source file of the GNU LilyPond music typesetter + + (c) 1997 Han-Wen Nienhuys +*/ + +#include "swallow-perf.hh" + +IMPLEMENT_STATIC_NAME(Swallow_performer); +IMPLEMENT_IS_TYPE_B1(Swallow_performer, Performer); +ADD_THIS_PERFORMER(Swallow_performer); -- 2.39.5