lilypond-0.1.33
[lilypond.git] / hdr / staff-elem-info.hh
blob9c6264a86bd56efe113b2c45e77b17c0a9ee79bc
1 /*
2 staff-elem-info.hh -- declare Staff_elem_info
4 source file of the LilyPond music typesetter
6 (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
10 #ifndef STAFFELEMINFO_HH
11 #define STAFFELEMINFO_HH
13 #include "proto.hh"
14 #include "varray.hh"
15 /// data container.
16 struct Staff_elem_info {
17 Staff_elem * elem_p_;
18 Request*req_l_;
19 const Voice * voice_l_;
20 Array<Request_register*> origin_reg_l_arr_;
23 /* *** */
24 Staff_elem_info(Staff_elem*, Request*);
25 Staff_elem_info();
28 struct Staff_info {
29 int *c0_position_i_;
30 Staff_walker *walk_l_;
31 const Time_description *time_c_l_;
32 const Rhythmic_grouping *rhythmic_c_l_;
36 struct Features {
37 bool initialiser_b_;
38 int direction_i_;
40 Features();
41 static Features dir(int);
43 #endif // STAFFELEMINFO_HH