]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/grob-info.hh
release: 1.3.149
[lilypond.git] / lily / include / grob-info.hh
1 /*
2   grob-info.hh -- declare Grob_info
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef STAFFELEMINFO_HH
11 #define STAFFELEMINFO_HH
12
13 #include "lily-proto.hh"
14 #include "parray.hh"
15
16 /**
17   Data container for broadcasts.
18
19   TODO: Store this in element info! 
20   */
21 struct Grob_info {
22   Translator * origin_trans_l_;
23   friend class Engraver;
24 public:
25   Link_array<Translator> origin_trans_l_arr (Translator*) const; 
26   Grob * elem_l_;
27   Music *req_l_;
28
29
30   Grob_info (Grob*, Music*);
31   Grob_info ();
32 };
33
34
35 #endif // STAFFELEMINFO_HH