]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/tie-column.hh
release: 1.3.62
[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   VIRTUAL_COPY_CONS (Score_element);
20   void add_tie (Tie*);
21   Tie_column (SCM s);
22
23   SCM member_after_line_breaking ();
24   static SCM after_line_breaking (SCM);
25   void set_directions ();
26 };
27
28 #endif /* TIE_COLUMN_HH */
29