]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/swallow-perf.cc
The grand \paper -> \layout, \bookpaper -> \paper renaming.
[lilypond.git] / lily / swallow-perf.cc
index 8c656967c59beef301e2b2b92c76635dfa4dcb4b..e70149069f4d876430422099d9c50e4fa2836653 100644 (file)
@@ -3,11 +3,36 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1998 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 ()
+{}
+
+ENTER_DESCRIPTION (Swallow_performer,
+/* descr */       "",
+/* creats*/       "",
+/* accepts */     "general-music",
+/* acks  */      "",
+/* reads */       "",
+/* write */       "");