]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/time-signature-engraver.hh
release: 1.1.30
[lilypond.git] / lily / include / time-signature-engraver.hh
1 /*
2   time_signature-engraver.hh -- declare  Time_signature_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef TIME_SIG_ENGRAVER_HH
11 #define TIME_SIG_ENGRAVER_HH
12 #include "engraver.hh"
13 #include "time-description.hh"
14 #include "rhythmic-grouping.hh"
15
16 /**
17   generate time_signatures. 
18   */
19 class Time_signature_engraver : public Engraver {
20 protected:
21   virtual void do_process_requests();
22   virtual void do_pre_move_processing();
23 public:
24   VIRTUAL_COPY_CONS(Translator);
25   Time_signature * time_signature_p_;
26
27   Time_signature_engraver();
28   
29 };
30 #endif // TIME_SIG_ENGRAVER_HH