]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/time-signature-performer.hh
release: 1.1.29
[lilypond.git] / lily / include / time-signature-performer.hh
1 /*
2   time_signature-performer.hh -- declare Time_signature_performer
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #ifndef METER_PERFOMER_HH
10 #define METER_PERFOMER_HH
11
12 #include "lily-proto.hh"
13 #include "performer.hh"
14
15 class Time_signature_performer : public Performer {
16 public:
17   VIRTUAL_COPY_CONS(Translator);
18   
19   Time_signature_performer();
20   ~Time_signature_performer();
21
22 protected:
23   void do_print() const;
24   virtual bool do_try_music (Music* req_l);
25   virtual void do_process_requests();
26
27 private:
28   Time_signature_change_req* time_signature_req_l_;
29 };
30
31 #endif // METER_PERFOMER_HH