lilypond-1.3.16
[lilypond.git] / lily / include / head-engraver.hh
blob089018371474fddc34bc4a52b376c5b2b6b5f6f9
1 /*
2 head-engraver.hh -- part of GNU LilyPond
4 (c) 1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
5 */
8 #ifndef HEADGRAV_HH
9 #define HEADGRAV_HH
10 #include "engraver.hh"
12 /**
13 make balls and rests
15 class Note_head_engraver : public Engraver {
16 Note_head* note_p_;
17 Dots * dot_p_;
18 Rhythmic_req * note_req_l_;
20 public:
21 TRANSLATOR_CLONE(Note_head_engraver);
22 Note_head_engraver();
23 DECLARE_MY_RUNTIME_TYPEINFO;
24 protected:
25 virtual bool do_try_request (Request *req_l) ;
26 virtual void do_process_requests();
27 virtual void do_pre_move_processing();
28 virtual void do_post_move_processing();
33 #endif // HEADGRAV_HH