]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stem-info.hh
release: 1.3.3
[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   Direction dir_;
18   void set_direction (Direction d ) { dir_ =  d; }
19   Direction get_direction () const { return dir_; }
20
21   int beam_dir_;
22   Real idealy_f_;
23   Real miny_f_;
24   Real maxy_f_;
25   int mult_i_;
26   Real interstaff_f_;
27   Stem* stem_l_;
28
29   Stem_info ();
30   Stem_info (Stem *, int);
31 };
32
33 #endif // STEM_INFO_HH