]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/line-interface.hh
* flower
[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--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef LINE_INTERFACE_HH
10 #define LINE_INTERFACE_HH
11
12 #include "lily-proto.hh"
13
14 struct Line_interface
15 {
16   static Stencil line (Grob *me, Offset from, Offset to);
17   static bool has_interface (Grob *);
18   static Stencil make_dashed_line (Real th, Offset from, Offset to, Real, Real);
19   static Stencil make_line (Real th, Offset from, Offset to);
20 };
21
22 #endif /* LINE_INTERFACE_HH */
23