]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/tie-column.hh
patch::: 1.3.136.jcn3
[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--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8   
9  */
10
11 #ifndef TIE_COLUMN_HH
12 #define TIE_COLUMN_HH
13
14 #include "lily-proto.hh"
15 #include "lily-guile.hh"
16
17 class Tie_column
18 {
19 public:
20   static void set_interface (Grob*me);
21   static bool has_interface (Grob*);
22   static void add_tie (Grob*me,Grob*);
23   DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM ));
24   static void set_directions (Grob*me);
25 };
26
27 #endif /* TIE_COLUMN_HH */
28