]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dynamic-reg.hh
cd500c190136ecf063a1fb3a5315edfd62d59aaf
[lilypond.git] / lily / include / dynamic-reg.hh
1 /*
2   dynamic-reg.hh -- declare Dynamic_register
3
4   source file of the LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef DYNAMIC_REG_HH
11 #define DYNAMIC_REG_HH
12
13 #include "register.hh"
14
15 struct Dynamic_register : Request_register {
16     int dir_i_;
17     Text_item * dynamic_p_;
18     Dynamic_req* dynamic_req_l_;
19     /* ************** */
20     Dynamic_register();
21     virtual bool try_request(Request *req_l);
22     virtual void process_requests();
23     virtual void pre_move_processing();
24     virtual void post_move_processing();
25     virtual bool acceptable_request_b(Request*) const;
26     virtual void set_feature(Features);
27     NAME_MEMBERS(Dynamic_register);
28 };
29
30 #endif // DYNAMIC_REG_HH