lilypond-1.0.19
[lilypond.git] / lily / include / meter-performer.hh
blobf3fe174dd15ad77497c2e4895010873237150d11
1 /*
2 meter-performer.hh -- declare Meter_performer
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1998 Jan Nieuwenhuizen <jan@digicash.com>
7 */
9 #ifndef METER_PERFOMER_HH
10 #define METER_PERFOMER_HH
12 #include "lily-proto.hh"
13 #include "performer.hh"
15 class Meter_performer : public Performer {
16 public:
17 TRANSLATOR_CLONE(Meter_performer);
18 DECLARE_MY_RUNTIME_TYPEINFO;
19 Meter_performer();
20 ~Meter_performer();
22 protected:
23 void do_print() const;
24 virtual bool do_try_request (Request* req_l);
25 virtual void do_process_requests();
27 private:
28 Meter_change_req* meter_req_l_;
31 #endif // METER_PERFOMER_HH