]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/swallow-perf.cc
*** empty log message ***
[lilypond.git] / lily / swallow-perf.cc
index 8f00a789c23b8a0b9e12217d2a01f6ca83b4d70c..f537e6e2577eb75431df28246626065323b67488 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include "performer.hh"
 class Swallow_performer : public Performer
 {
 public:
-  TRANSLATOR_DECLARATIONS(Swallow_performer);
+  TRANSLATOR_DECLARATIONS (Swallow_performer);
 protected:
-  virtual bool try_music (Music*) { return true; }
+  virtual bool try_music (Music*);
 };
 
-Swallow_performer::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,
+ADD_TRANSLATOR (Swallow_performer,
 /* descr */       "",
 /* creats*/       "",
 /* accepts */     "general-music",