From: fred Date: Tue, 26 Mar 2002 22:36:21 +0000 (+0000) Subject: lilypond-1.2.1 X-Git-Tag: release/1.5.59~2064 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=14e162cb25ea964462185deceadec3b49248fcdd;p=lilypond.git lilypond-1.2.1 --- diff --git a/lily/include/bar-align-engraver.hh b/lily/include/bar-align-engraver.hh deleted file mode 100644 index 7cf2db0cfe..0000000000 --- a/lily/include/bar-align-engraver.hh +++ /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 -*/ - - -#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 index fb4fd96d59..0000000000 --- a/lily/include/beam-swallow-trans.hh +++ /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 - - */ - -#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 index 989602690a..0000000000 --- a/lily/include/dynamic-engraver.hh +++ /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 -*/ - - -#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 index da857f6c29..0000000000 --- a/lily/include/type-swallow-trans.hh +++ /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 -*/ - - -#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 index b3d192cdfe..0000000000 --- a/lily/type-swallow-trans.cc +++ /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 -*/ - -#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);