]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/hyphen-spanner.hh
release: 1.3.62
[lilypond.git] / lily / include / hyphen-spanner.hh
1 /*
2   hyphen-spanner.hh -- part of GNU LilyPond
3
4   (c) 1999 Glen Prideaux <glenprideaux@iname.com>
5 */
6
7 #ifndef HYPHEN_SPANNER_HH
8 #define HYPHEN_SPANNER_HH
9
10 #include "spanner.hh"
11
12 /** 
13   centred hyphen 
14
15   A centred hyphen is a simple line between lyrics used to
16   divide syllables.
17
18   The length of the hyphen line should stretch based on the
19   size of the gap between syllables.
20   */
21 struct Hyphen_spanner // interface
22 {
23 public:
24   Spanner* elt_l_;
25   Hyphen_spanner  (Spanner*);
26   void set_textitem (Direction, Item*);
27   static SCM brew_molecule (SCM);
28 };
29
30 #endif // HYPHEN_SPANNER_HH
31