]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/swallow-perf.cc
(DECLARE_EVENT_SWALLOWER): ENTER_DESCRIPTION -> ADD_TRANSLATOR
[lilypond.git] / lily / swallow-perf.cc
index 99c9ec54b98bbaca689b0ff63c0a4a18c9cd93a6..f537e6e2577eb75431df28246626065323b67488 100644 (file)
@@ -3,11 +3,36 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
-#include "swallow-perf.hh"
+#include "performer.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 ()
+{}
+
+ADD_TRANSLATOR (Swallow_performer,
+/* descr */       "",
+/* creats*/       "",
+/* accepts */     "general-music",
+/* acks  */      "",
+/* reads */       "",
+/* write */       "");