]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-heads-engraver.hh
release: 1.3.33
[lilypond.git] / lily / include / note-heads-engraver.hh
1 /*
2   head-engraver.hh -- part of GNU LilyPond
3
4   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
5 */
6
7
8 #ifndef HEADSGRAV_HH
9 #define HEADSGRAV_HH
10 #include "engraver.hh"
11 #include "pqueue.hh"
12
13 /**
14   make balls and rests
15  */
16 class Note_heads_engraver : public Engraver {
17   Link_array<Note_head> note_p_arr_;
18   Link_array<Dots> dot_p_arr_;
19   Link_array<Note_req> note_req_l_arr_;
20   Moment note_end_mom_;
21 public:
22   VIRTUAL_COPY_CONS(Translator);
23   Note_heads_engraver();
24   
25 protected:
26   virtual bool do_try_music (Music *req_l) ;
27   virtual void do_process_music();
28   virtual void do_pre_move_processing();
29 };
30
31
32 #endif // HEADSGRAV_HH