]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/swallow-perf.cc
release commit
[lilypond.git] / lily / swallow-perf.cc
index 7cafeaf9ce2974fd9cc6bab064a31009a5b90c43..5c5654a1ad18562d08eed89a01c0a1d8492a5665 100644 (file)
@@ -1,13 +1,40 @@
 /*
-  swallow-perf.cc -- implement Swallow_performer
+  swallow-performer.cc -- implement Swallow_performer
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
-#include "swallow-perf.hh"
+#include "performer.hh"
+#include "music.hh"
 
+class Swallow_performer : public Performer
+{
+public:
+  TRANSLATOR_DECLARATIONS (Swallow_performer);
+protected:
+  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"))
+    return false;
+  else
+    return true;
+}
 
-ADD_THIS_TRANSLATOR(Swallow_performer);
+Swallow_performer::Swallow_performer ()
+{}
+
+#include "translator.icc"
+
+ADD_TRANSLATOR (Swallow_performer,
+               /* doc */ "",
+               /* create */ "",
+               /* accept */ "general-music",
+               /* read */ "",
+               /* write */ "");