]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/spacing-spanner.hh
release: 1.1.44
[lilypond.git] / lily / include / spacing-spanner.hh
1 /*   
2   spacing-spanner.hh -- declare Spacing_spanner
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef SPACING_SPANNER_HH
11 #define SPACING_SPANNER_HH
12
13 #include "spanner.hh"
14
15 class Spacing_spanner : public Spanner
16 {
17 public:
18   Spacing_spanner ();
19   VIRTUAL_COPY_CONS(Score_element);
20   Score_column *scol (int) const;
21   Array<Spring> do_measure (int,int) const;
22   int col_count () const;
23 protected:
24   virtual  Array<Spring> get_springs () const;
25   
26 };
27
28 #endif /* SPACING_SPANNER_HH */
29