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