]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/swallow-perf.cc
2003 -> 2004
[lilypond.git] / lily / swallow-perf.cc
index 7b2884b9fa3d3e7d2ef66eb6148baefea40bfbf0..dbeb4cc515ea7ec1f1b9a8c3be0dc02e2e14a313 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include "performer.hh"
@@ -13,15 +13,26 @@ class Swallow_performer : public Performer
 public:
   TRANSLATOR_DECLARATIONS(Swallow_performer);
 protected:
-  virtual bool try_music (Music*) { return true; }
+  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; 
+}
+
 Swallow_performer::Swallow_performer()
 {}
 
 ENTER_DESCRIPTION(Swallow_performer,
 /* descr */       "",
 /* creats*/       "",
-/* acks  */       "",
+/* accepts */     "general-music",
+/* acks  */      "",
 /* reads */       "",
 /* write */       "");