]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/separating-group-spanner.hh
Merge with master
[lilypond.git] / lily / include / separating-group-spanner.hh
1 /*
2   separating-group-spanner.hh -- declare Separating_group_spanner
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef SEPARATING_GROUP_SPANNER_HH
10 #define SEPARATING_GROUP_SPANNER_HH
11
12 #include "grob-interface.hh"
13 #include "lily-proto.hh"
14
15 class Separating_group_spanner
16 {
17   static void find_rods (Item *,
18                          vector<Grob*> const &separators,
19                          vsize idx,
20                          Real);
21 public:
22   static void add_spacing_unit (Grob *me, Item *);
23
24   DECLARE_GROB_INTERFACE();
25   DECLARE_SCHEME_CALLBACK (set_spacing_rods, (SCM));
26 };
27
28 #endif /* SEPARATING_GROUP_SPANNER_HH */
29