lilypond-0.1.33
[lilypond.git] / hdr / slurreg.hh
blob701b60a27933e8dbdd5d21d2e76e7470697312bc
1 /*
2 slurreg.hh -- declare Slur_register
4 (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
5 */
8 #ifndef SLURREG_HH
9 #define SLURREG_HH
11 #include "register.hh"
13 struct Slur_register : Request_register {
14 Array<Slur_req*> requests_arr_;
15 Array<Slur *> slur_l_stack_;
16 Array<Slur*> end_slur_l_arr_;
17 int dir_i_;
18 /* *************** */
19 ~Slur_register();
20 Slur_register(Complex_walker*);
21 virtual bool try_request(Request*);
22 virtual void process_request();
23 virtual void acknowledge_element(Staff_elem_info);
24 virtual void do_pre_move_process();
25 virtual void set_dir(int);
28 #endif // SLURREG_HH