]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/voice-group-regs.hh
5f17d8fa8ba7464896aacfa835958800b1b80dd7
[lilypond.git] / lily / include / voice-group-regs.hh
1 /*
2   voice-group-regs.hh -- declare Voice_group_registers
3
4   source file of the LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef VOICEGROUPREGS_HH
11 #define VOICEGROUPREGS_HH
12
13 #include "register-group.hh"
14
15 struct Voice_group_registers  : Register_group_register {
16     String group_id_str_;
17     Array<Voice_registers*> voice_regs_l_;
18     Moment termination_mom_;
19     
20     /* *************** */
21     
22     NAME_MEMBERS(Voice_group_registers);
23     static bool static_acceptable_request_b(Request*);
24     virtual void terminate_register(Request_register*);
25     virtual void do_print() const;
26     virtual void post_move_processing();
27     virtual void add(Request_register*);
28     Voice_group_registers(String id);
29     virtual bool try_request(Request*);
30 };
31 #endif // VOICEGROUPREGS_HH