]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/voice-regs.hh
release: 0.0.65
[lilypond.git] / lily / include / voice-regs.hh
1 /*
2   voice-regs.hh -- declare Voice_registers
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 VOICEREGS_HH
11 #define VOICEREGS_HH
12
13 #include "register-group.hh"
14
15 class Voice_registers : public Register_group_register {
16     Input_register const *ireg_C_;
17     bool terminate_b_;
18 public:
19     Voice *voice_l_;
20     /* *************** */
21
22     Voice_registers(Voice*, Input_register const*);
23     NAME_MEMBERS(Voice_registers);
24
25 protected:
26     virtual void pre_move_processing();
27     virtual bool acceptable_request_b(Request*);
28     virtual void acknowledge_element(Score_elem_info info);
29     virtual bool try_request(Request*);
30     virtual void do_print() const;
31 };
32
33
34 #endif // VOICEREGS_HH