]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/tie-column.hh
* flower
[lilypond.git] / lily / include / tie-column.hh
1
2 /*
3   tie-column.hh -- declare Tie_column
4
5   source file of the GNU LilyPond music typesetter
6
7   (c) 2000--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
9
10 #ifndef TIE_COLUMN_HH
11 #define TIE_COLUMN_HH
12
13 #include "lily-proto.hh"
14 #include "lily-guile.hh"
15
16 class Tie_column
17 {
18 public:
19   static bool has_interface (Grob *);
20   static void add_tie (Grob *me, Grob *);
21   DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM));
22   DECLARE_SCHEME_CALLBACK (before_line_breaking, (SCM));
23   static void set_directions (Grob *me);
24   static void werner_directions (Grob *me);
25 };
26
27 #endif /* TIE_COLUMN_HH */
28