]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/swallow-perf.cc
2003 -> 2004
[lilypond.git] / lily / swallow-perf.cc
index 6d8c55936eac5154d682ea74c05ca72e1ab3fcda..dbeb4cc515ea7ec1f1b9a8c3be0dc02e2e14a313 100644 (file)
@@ -3,11 +3,36 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.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*);
+};
 
-IMPLEMENT_IS_TYPE_B1(Swallow_performer, Performer);
-ADD_THIS_TRANSLATOR(Swallow_performer);
+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; 
+}
+
+Swallow_performer::Swallow_performer()
+{}
+
+ENTER_DESCRIPTION(Swallow_performer,
+/* descr */       "",
+/* creats*/       "",
+/* accepts */     "general-music",
+/* acks  */      "",
+/* reads */       "",
+/* write */       "");