lilypond-1.3.16
[lilypond.git] / lily / include / beaming.hh
blob3dcf419bf62d78c541737b96541a1047a1df70cb
1 /*
2 beaming.hh -- declare beaming.hh
4 source file of the GNU LilyPond music typesetter
6 (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #ifndef BEAMING_HH
11 #define BEAMING_HH
13 #include "parray.hh"
14 #include "drul-array.hh"
15 #include "moment.hh"
17 struct Beaming_info
19 Moment start_mom_;
20 Drul_array<int> beams_i_drul_;
22 Beaming_info (Moment, int);
23 int count (Direction d);
24 Beaming_info ();
27 struct Beaming_info_list
29 Array<Beaming_info> infos_;
31 int beam_extend_count (Direction) const;
32 int min_denominator_index () const;
33 void beamify ();
34 void add_stem (Moment d, int beams);
38 #endif /* BEAMING_HH */