]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/meter-reg.hh
release: 0.0.71pre
[lilypond.git] / lily / include / meter-reg.hh
1 /*
2   meter-reg.hh -- declare  Meter_register
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef METERREG_HH
11 #define METERREG_HH
12 #include "register.hh"
13 #include "time-description.hh"
14 #include "grouping.hh"
15
16 /**
17   generate meters. 
18   */
19 class Meter_register : public Request_register {
20 public:
21     Time_description time_;
22     Rhythmic_grouping  default_grouping_;
23     
24     Meter_change_req * meter_req_l_;
25     Meter * meter_p_;
26  
27     virtual void fill_staff_info(Staff_info&);
28     virtual bool do_try_request(Request *req_l);
29     virtual void do_process_requests();
30     virtual void do_pre_move_processing();
31     virtual void do_creation_processing();
32     virtual void do_post_move_processing();
33     Meter_register();
34     NAME_MEMBERS();
35 };
36 #endif // METERREG_HH