]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/line-interface.hh
* lily/hairpin.cc: use Line_interface
[lilypond.git] / lily / include / line-interface.hh
1 /*   
2 line-interface.hh -- declare 
3
4 source file of the GNU LilyPond music typesetter
5
6 (c) 2004 Han-Wen Nienhuys <hanwen@xs4all.nl>
7
8  */
9
10 #ifndef LINE_INTERFACE_HH
11 #define LINE_INTERFACE_HH
12
13 #include "lily-proto.hh"
14
15 struct Line_interface
16 {
17   static Molecule dashed_line (Grob *me, Real thick, Offset from, Offset to);
18   static bool has_interface (Grob*);
19   static Molecule make_dashed_line (Real th, Offset from, Offset to, Real, Real);
20
21 };
22 #endif /* LINE_INTERFACE_HH */
23
24