]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.2.1
authorfred <fred>
Tue, 26 Mar 2002 22:36:21 +0000 (22:36 +0000)
committerfred <fred>
Tue, 26 Mar 2002 22:36:21 +0000 (22:36 +0000)
lily/include/bar-align-engraver.hh [deleted file]
lily/include/beam-swallow-trans.hh [deleted file]
lily/include/dynamic-engraver.hh [deleted file]
lily/include/type-swallow-trans.hh [deleted file]
lily/type-swallow-trans.cc [deleted file]

diff --git a/lily/include/bar-align-engraver.hh b/lily/include/bar-align-engraver.hh
deleted file mode 100644 (file)
index 7cf2db0..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-/*
-  bar-align-engraver.hh -- declare 
-
-  source file of the GNU LilyPond music typesetter
-
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-
-#ifndef BAR_ALIGN_GRAV_HH
-#define BAR_ALIGN_GRAV_HH
-
-#endif // BAR_ALIGN_GRAV_HH
diff --git a/lily/include/beam-swallow-trans.hh b/lily/include/beam-swallow-trans.hh
deleted file mode 100644 (file)
index fb4fd96..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/*   
-  beam-swallow-trans.hh -- declare 
-  
-  source file of the GNU LilyPond music typesetter
-  
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
-
-#ifndef BEAM_SWALLOW_TRANS_HH
-#define BEAM_SWALLOW_TRANS_HH
-
-
-#endif /* BEAM_SWALLOW_TRANS_HH */
-
diff --git a/lily/include/dynamic-engraver.hh b/lily/include/dynamic-engraver.hh
deleted file mode 100644 (file)
index 9896026..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-/*
-  dynamic-engraver.hh -- declare Dynamic_engraver
-
-  source file of the GNU LilyPond music typesetter
-
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-
-#ifndef DYNAMIC_GRAV_HH
-#define DYNAMIC_GRAV_HH
-
-#endif // DYNAMIC_GRAV_HH
diff --git a/lily/include/type-swallow-trans.hh b/lily/include/type-swallow-trans.hh
deleted file mode 100644 (file)
index da857f6..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
-  type-swallow-engraver.hh -- declare Type_swallow_translator
-
-  source file of the GNU LilyPond music typesetter
-
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-
-#ifndef TYPESWALLOW_GRAV_HH
-#define TYPESWALLOW_GRAV_HH
-
-#include "translator.hh"
-
-/** eat a certain type of request.
-    (Duh, it's good for your skin)
- */
-class Type_swallow_translator : public virtual Translator
-{
-protected:
-  String swallow_str_;
-  bool do_try_music (Music*);
-public:  
-  VIRTUAL_COPY_CONS(Translator);
-};
-
-#define DECLARE_REQUEST_SWALLOWER(TYPE)  \
-struct TYPE ## _swallow_translator : public Type_swallow_translator {\
-  TYPE ## _swallow_translator() { \
-      swallow_str_ =  #TYPE;\
-  }\
-  \
-  VIRTUAL_COPY_CONS(Translator);\
-};\
-ADD_THIS_TRANSLATOR(TYPE ## _swallow_translator);\
-
-#endif // TYPESWALLOW_GRAV_HH
-
diff --git a/lily/type-swallow-trans.cc b/lily/type-swallow-trans.cc
deleted file mode 100644 (file)
index b3d192c..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
-  type-swallow-trans.cc -- implement Type_swallow_translator
-
-  source file of the GNU LilyPond music typesetter
-
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-#include "type-swallow-trans.hh"
-#include "musical-request.hh"
-
-
-bool
-Type_swallow_translator::do_try_music (Music*r)
-{
-  if (classname (r) == swallow_str_)
-      return true;
-  return false;
-}
-
-
-
-DECLARE_REQUEST_SWALLOWER(Skip_req);