* lexer-gcc-3.1.sh: Remove.
[lilypond/patrick.git] / lily / swallow-perf.cc
bloba2e3aa7b85b3306a77914ae290eb2d52de5e55af
1 /*
2 swallow-performer.cc -- implement Swallow_performer
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
9 #include "performer.hh"
10 #include "music.hh"
12 class Swallow_performer : public Performer
14 public:
15 TRANSLATOR_DECLARATIONS (Swallow_performer);
16 protected:
17 virtual bool try_music (Music *);
20 bool
21 Swallow_performer::try_music (Music *m)
23 if (m->is_mus_type ("melisma-playing-event"))
24 return false;
25 else
26 return true;
29 Swallow_performer::Swallow_performer ()
32 #include "translator.icc"
34 ADD_TRANSLATOR (Swallow_performer,
35 /* doc */ "",
36 /* create */ "",
37 /* accept */ "general-music",
38 /* read */ "",
39 /* write */ "");