lilypond-1.3.16
[lilypond.git] / lily / include / heads-engraver.hh
blob433a05f43aa1901c47a0b6bc771789975105606f
1 /*
2 head-engraver.hh -- part of GNU LilyPond
4 (c) 1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
5 */
8 #ifndef HEADSGRAV_HH
9 #define HEADSGRAV_HH
10 #include "engraver.hh"
12 /**
13 make balls and rests
15 class Note_heads_engraver : public Engraver {
16 Link_array<Note_head> note_p_arr_;
17 Link_array<Dots> dot_p_arr_;
18 Link_array<Note_req> note_req_l_arr_;
20 public:
21 VIRTUAL_COPY_CONS(Translator);
22 Note_heads_engraver();
24 protected:
25 virtual bool do_try_music (Music *req_l) ;
26 virtual void do_process_requests();
27 virtual void do_pre_move_processing();
28 virtual void do_post_move_processing();
32 #endif // HEADSGRAV_HH