]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/staff-info.hh
9f03ca73d5181096d4c6714d017118aea7efcb47
[lilypond.git] / lily / include / staff-info.hh
1 /*
2   staff-info.hh -- declare Staff_info
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef STAFF_INFO_HH
11 #define STAFF_INFO_HH
12
13 #include "lily-proto.hh"
14
15 /// struct to pass staff info along a Engraver hierarchy.
16 struct Staff_info {
17     int *c0_position_i_l_;
18     Staff_symbol*staff_sym_l_;
19     
20     Time_description const *time_C_;
21     Rhythmic_grouping const *rhythmic_C_;
22     Score_column *musical_l_;
23     Score_column *command_l_;
24
25     ///
26     bool break_allowed_b_;
27     Score * score_l_;
28     Score *score_l();
29     Paper_column * command_pcol_l();
30     Score_column* musical_l();
31     Score_column *command_l();
32     Paper_column * musical_pcol_l();
33     Staff_info();
34 };
35
36 #endif // STAFF_INFO_HH