lilypond-1.5.10
[lilypond.git] / lily / include / grob-info.hh
blob4e00958060328f2c71cd7d0f6740141d9cb9822e
1 /*
2 grob-info.hh -- declare Grob_info
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
10 #ifndef STAFFELEMINFO_HH
11 #define STAFFELEMINFO_HH
13 #include "lily-proto.hh"
14 #include "parray.hh"
16 /**
17 Data container for broadcasts.
19 TODO: Store this in element info!
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_;
30 Grob_info (Grob*, Music*);
31 Grob_info ();
35 #endif // STAFFELEMINFO_HH