]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stem-info.hh
release: 1.1.37
[lilypond.git] / lily / include / stem-info.hh
1 /*
2   stem-info.hh -- declare Stem_info
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9
10 #ifndef STEM_INFO_HH
11 #define STEM_INFO_HH
12
13 #include "real.hh"
14
15 struct Stem_info {
16   Real x_;
17   int dir_;
18   int beam_dir_;
19   Real idealy_f_;
20   Real miny_f_;
21   Real maxy_f_;
22   int mult_i_;
23   Real interstaff_f_;
24   Stem* stem_l_;
25
26
27   Stem_info ();
28   Stem_info (Stem *, int);
29 };
30
31 #endif // STEM_INFO_HH