From: fred Date: Wed, 27 Mar 2002 00:00:25 +0000 (+0000) Subject: lilypond-1.3.67 X-Git-Tag: release/1.5.59~1208 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3197ac227ea605fb553be7d2b5fa9e2eca7ec2a3;p=lilypond.git lilypond-1.3.67 --- diff --git a/lily/include/breathing-sign-engraver.hh b/lily/include/breathing-sign-engraver.hh deleted file mode 100644 index ef0fa899fa..0000000000 --- a/lily/include/breathing-sign-engraver.hh +++ /dev/null @@ -1,34 +0,0 @@ -/* - breathing-sign-engraver.hh -- declare Breathing_Sign_engraver - - Copyright (C) 1999 Michael Krause - - written for the GNU LilyPond music typesetter - -*/ - -#ifndef BREATHING_SIGN_ENGRAVER_HH -#define BREATHING_SIGN_ENGRAVER_HH - -#include "engraver.hh" -#include "command-request.hh" -#include "breathing-sign.hh" - -class Breathing_sign_engraver : public Engraver { -public: - Breathing_sign_engraver(); - VIRTUAL_COPY_CONS(Translator); - -protected: - virtual bool do_try_music (Music *req_l); - virtual void do_process_music(); - - virtual void do_pre_move_processing(); - virtual void do_post_move_processing(); - -private: - Breathing_sign_req * breathing_sign_req_l_; - Breathing_sign * breathing_sign_p_; -}; - -#endif // BREATHING_SIGN_ENGRAVER_HH diff --git a/lily/include/note-heads-engraver.hh b/lily/include/note-heads-engraver.hh deleted file mode 100644 index bbe8e0254f..0000000000 --- a/lily/include/note-heads-engraver.hh +++ /dev/null @@ -1,32 +0,0 @@ -/* - head-engraver.hh -- part of GNU LilyPond - - (c) 1997--2000 Han-Wen Nienhuys -*/ - - -#ifndef HEADSGRAV_HH -#define HEADSGRAV_HH -#include "engraver.hh" -#include "pqueue.hh" - -/** - make balls and rests - */ -class Note_heads_engraver : public Engraver { - Link_array note_p_arr_; - Link_array dot_p_arr_; - Link_array note_req_l_arr_; - Moment note_end_mom_; -public: - VIRTUAL_COPY_CONS(Translator); - Note_heads_engraver(); - -protected: - virtual bool do_try_music (Music *req_l) ; - virtual void do_process_music(); - virtual void do_pre_move_processing(); -}; - - -#endif // HEADSGRAV_HH diff --git a/lily/include/rest-engraver.hh b/lily/include/rest-engraver.hh deleted file mode 100644 index af5715269d..0000000000 --- a/lily/include/rest-engraver.hh +++ /dev/null @@ -1,30 +0,0 @@ -/* - rest-engraver.hh -- declare Engraver - - source file of the GNU LilyPond music typesetter - - (c) 1997--2000 Han-Wen Nienhuys -*/ - - -#ifndef REST_GRAV_HH -#define REST_GRAV_HH - -#include "engraver.hh" - -class Rest_engraver : public Engraver -{ - Rest_req *rest_req_l_; - Item * dot_p_; - Rest * rest_p_; -protected: - virtual bool do_try_music (Music *); - virtual void do_pre_move_processing (); - virtual void do_post_move_processing (); - virtual void do_process_music (); -public: - - VIRTUAL_COPY_CONS(Translator); - Rest_engraver (); -}; -#endif // REST_GRAV_HH