]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/hyphen-spanner.hh
* Documentation/topdocs/NEWS.texi (Top): add quarter tones.
[lilypond.git] / lily / include / hyphen-spanner.hh
1 /*
2   hyphen-spanner.hh -- part of GNU LilyPond
3
4   (c)  1999--2003 Glen Prideaux <glenprideaux@iname.com>
5 */
6
7 #ifndef HYPHEN_SPANNER_HH
8 #define HYPHEN_SPANNER_HH
9
10 #include "spanner.hh"
11
12 struct Hyphen_spanner 
13 {
14 public:
15   Spanner* elt_;
16
17   DECLARE_SCHEME_CALLBACK(set_spacing_rods, (SCM));
18   Hyphen_spanner (Spanner*);
19   void set_textitem (Direction, Grob*);
20   bool has_interface (Grob*);
21   DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM ));
22 };
23
24 #endif // HYPHEN_SPANNER_HH
25