]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/tie-column.hh
release: 1.3.25
[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 (Score_element*);
21   Tie_column ();
22 protected:
23   virtual void do_post_processing ();
24   void set_directions ();
25   
26 };
27
28 #endif /* TIE_COLUMN_HH */
29