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