]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/separating-group-spanner.hh
release: 1.3.68
[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--2000 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 : public Spanner
16 {
17 public:
18   void add_spacing_unit (Item*);
19   Separating_group_spanner(SCM);
20 protected:
21   VIRTUAL_COPY_CONS(Score_element);
22   virtual Array<Rod> get_rods () const;
23 };
24
25 #endif /* SEPARATING_GROUP_SPANNER_HH */
26