]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/timing-engraver.hh
patch::: 1.3.82.hwn1
[lilypond.git] / lily / include / timing-engraver.hh
1 /*
2   timing-engraver.hh -- declare Timing_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef TIMING_GRAV_HH
11 #define TIMING_GRAV_HH
12
13 #include "timing-translator.hh"
14 #include "engraver.hh"
15
16 /**
17   Do time bookkeeping
18  */
19 class Timing_engraver : public Timing_translator, public Engraver
20 {   
21
22   Bar_req * bar_req_l_;
23 protected:
24   virtual bool do_try_music (Music * );
25   virtual void do_post_move_processing ();
26 public:
27   String which_bar (); 
28   VIRTUAL_COPY_CONS(Translator);
29   
30 };
31
32 #endif // TIMING_GRAV_HH