]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/swallow-perf.cc
Merge branch 'master' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond into lilypond...
[lilypond.git] / lily / swallow-perf.cc
index 605d0a68d96ee01ccaf203c7f2d1257f8e2edb5d..f148699c867ca64687be176e2875f24d972032eb 100644 (file)
@@ -1,38 +1,46 @@
 /*
-  swallow-perf.cc -- implement Swallow_performer
+  swallow-performer.cc -- implement Swallow_performer
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "performer.hh"
+#include "music.hh"
 
 class Swallow_performer : public Performer
 {
 public:
   TRANSLATOR_DECLARATIONS (Swallow_performer);
 protected:
-  virtual bool try_music (Music*);
+  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"))
+  if (m->is_mus_type ("melisma-playing-event"))
     return false;
   else
-    return true; 
+    return true;
 }
 
 Swallow_performer::Swallow_performer ()
 {}
 
+#include "translator.icc"
+
 ADD_TRANSLATOR (Swallow_performer,
-/* descr */       "",
-/* creats*/       "",
-/* accepts */     "general-music",
-/* acks  */      "",
-/* reads */       "",
-/* write */       "");
+               /* doc */
+               "",
+
+               /* create */
+               "",
+
+               /* read */
+               "",
+
+               /* write */
+               ""
+               );