]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/grob-info.hh
bba4bc124844dc0a0b5b8e7076eaa88a5ecc1b4b
[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--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef STAFFELEMINFO_HH
11 #define STAFFELEMINFO_HH
12
13 #include "lily-guile.hh"
14 #include "lily-proto.hh"
15 #include "parray.hh"
16
17 /**
18   Data container for broadcasts.
19   */
20 struct Grob_info {
21   Translator * origin_trans_l_;
22   friend class Engraver;
23
24   Grob * grob_l_;
25
26 public:
27   Music * music_cause ();
28   Link_array<Translator> origin_trans_l_arr (Translator*) const;
29   Grob_info (Grob*);
30   Grob_info ();
31 };
32
33 #endif // STAFFELEMINFO_HH