]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/meter-performer.hh
f3fe174dd15ad77497c2e4895010873237150d11
[lilypond.git] / lily / include / meter-performer.hh
1 /*
2   meter-performer.hh -- declare Meter_performer
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Jan Nieuwenhuizen <jan@digicash.com>
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 Meter_performer : public Performer {
16 public:
17   TRANSLATOR_CLONE(Meter_performer);
18   DECLARE_MY_RUNTIME_TYPEINFO;
19   Meter_performer();
20   ~Meter_performer();
21
22 protected:
23   void do_print() const;
24   virtual bool do_try_request (Request* req_l);
25   virtual void do_process_requests();
26
27 private:
28   Meter_change_req* meter_req_l_;
29 };
30
31 #endif // METER_PERFOMER_HH