+++ /dev/null
-/*
- 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
+++ /dev/null
-/*
- head-engraver.hh -- part of GNU LilyPond
-
- (c) 1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-
-#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_head> note_p_arr_;
- Link_array<Item> dot_p_arr_;
- Link_array<Note_req> 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
+++ /dev/null
-/*
- rest-engraver.hh -- declare Engraver
-
- source file of the GNU LilyPond music typesetter
-
- (c) 1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-
-#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