]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-heads-engraver.hh
release: 1.1.62
[lilypond.git] / lily / include / note-heads-engraver.hh
1 /*
2   head-engraver.hh -- part of GNU LilyPond
3
4   (c)  1997--1999 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   PQueue<Moment> notes_end_pq_;
21
22 public:
23   VIRTUAL_COPY_CONS(Translator);
24   Note_heads_engraver();
25   
26 protected:
27   virtual bool do_try_music (Music *req_l) ;
28   virtual void do_process_requests();
29   virtual void do_pre_move_processing();
30   virtual void do_post_move_processing();
31 };
32
33
34 #endif // HEADSGRAV_HH