]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/time-signature-engraver.hh
release: 1.0.1
[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--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef METERGRAV_HH
11 #define METERGRAV_HH
12 #include "engraver.hh"
13 #include "time-description.hh"
14 #include "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   TRANSLATOR_CLONE(Time_signature_engraver);
25   Time_signature * time_signature_p_;
26
27   Time_signature_engraver();
28   DECLARE_MY_RUNTIME_TYPEINFO;
29 };
30 #endif // METERGRAV_HH