]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/score-element-info.hh
34a5a497168ef1b3cdf5f9dc1fce859cdc9c0fd1
[lilypond.git] / lily / include / score-element-info.hh
1 /*
2   score-element-info.hh -- declare Score_element_info
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef STAFFELEMINFO_HH
11 #define STAFFELEMINFO_HH
12
13 #include "scalar.hh"
14 #include "lily-proto.hh"
15 #include "array.hh"
16
17 /**
18   Data container for broadcasts 
19   */
20 struct Score_element_info {
21     Score_element * elem_l_;
22     Graphical_lisp_element * lisp_l_;
23     Request*req_l_;
24     Array<Engraver*> origin_grav_l_arr_;
25
26     Score_element_info (Score_element*, Request*);
27     Score_element_info (Graphical_lisp_element*, Request*);
28     Score_element_info();
29 };
30
31
32 #endif // STAFFELEMINFO_HH