]> git.donarmstrong.com Git - lilypond.git/blob - lily/swallow-perf.cc
release: 1.5.13
[lilypond.git] / lily / swallow-perf.cc
1 /*
2   swallow-perf.cc -- implement Swallow_performer
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "performer.hh"
10
11 class Swallow_performer : public Performer
12 {
13 public:
14   TRANSLATOR_DECLARATIONS(Swallow_performer);
15 protected:
16   virtual bool try_music (Music*) { return true; }
17 };
18
19 Swallow_performer::Swallow_performer()
20 {}
21
22 ENTER_DESCRIPTION(Swallow_performer,
23 /* descr */       "",
24 /* creats*/       "",
25 /* acks  */       "",
26 /* reads */       "",
27 /* write */       "");