]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/swallow-perf.cc
Imported Upstream version 2.14.2
[lilypond.git] / lily / swallow-perf.cc
diff --git a/lily/swallow-perf.cc b/lily/swallow-perf.cc
deleted file mode 100644 (file)
index f148699..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
-  swallow-performer.cc -- implement Swallow_performer
-
-  source file of the GNU LilyPond music typesetter
-
-  (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 *);
-};
-
-bool
-Swallow_performer::try_music (Music *m)
-{
-  if (m->is_mus_type ("melisma-playing-event"))
-    return false;
-  else
-    return true;
-}
-
-Swallow_performer::Swallow_performer ()
-{}
-
-#include "translator.icc"
-
-ADD_TRANSLATOR (Swallow_performer,
-               /* doc */
-               "",
-
-               /* create */
-               "",
-
-               /* read */
-               "",
-
-               /* write */
-               ""
-               );