]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/time-signature-engraver.hh
patch::: 1.3.67.mb1: Re: Broken features
[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--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef TIME_SIG_ENGRAVER_HH
11 #define TIME_SIG_ENGRAVER_HH
12
13 #include "engraver.hh"
14
15 /**
16   generate time_signatures. 
17   */
18 class Time_signature_engraver : public Engraver {
19 protected:
20   virtual void do_process_music();
21   virtual void do_pre_move_processing();
22 public:
23   VIRTUAL_COPY_CONS(Translator);
24   Time_signature * time_signature_p_;
25
26   Time_signature_engraver();
27 };
28 #endif // TIME_SIG_ENGRAVER_HH