]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/separating-group-spanner.hh
37256f0310e596f701604c352cf03b6c790f44bf
[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--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef SEPARATING_GROUP_SPANNER_HH
11 #define SEPARATING_GROUP_SPANNER_HH
12
13 #include "spanner.hh"
14
15 class Separating_group_spanner
16 {
17 public:
18   static void add_spacing_unit (Grob*me, Item*);
19   static void find_rods (Item*, SCM);
20   
21   static bool has_interface (Grob*);
22   static void find_musical_sequences (Grob*);
23   DECLARE_SCHEME_CALLBACK (set_spacing_rods, (SCM ));
24   DECLARE_SCHEME_CALLBACK (set_spacing_rods_and_seqs, (SCM ));
25 };
26
27 #endif /* SEPARATING_GROUP_SPANNER_HH */
28