]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/tie-reg.hh
release: 0.0.71pre
[lilypond.git] / lily / include / tie-reg.hh
1 /*
2   tie-reg.hh -- declare Tie_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 TIE_REG_HH
11 #define TIE_REG_HH
12
13 #include "register.hh"
14
15 class Tie_register : public Request_register {
16     Tie * end_tie_p_;
17     Tie * tie_p_;
18     Moment end_mom_;
19     Tie_req * req_l_;
20     int dir_i_;
21     Tie_req *end_req_l_;
22     Melodic_req * end_melodic_req_l_;
23     Melodic_req  * melodic_req_l_;
24     
25 protected:
26     virtual ~Tie_register();
27     virtual void acknowledge_element(Score_elem_info);
28     virtual bool do_try_request(Request*);
29     virtual bool acceptable_request_b(Request*);
30     virtual void sync_features();
31     virtual void do_process_requests();
32     virtual void do_post_move_processing();
33     virtual void do_pre_move_processing();
34     virtual void set_feature(Feature);
35 public:
36     Tie_register();
37     NAME_MEMBERS();
38 };
39
40 #endif // TIE_REG_HH