]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/tie.hh
release: 0.0.59
[lilypond.git] / lily / include / tie.hh
1 /*
2   tie.hh -- declare Tie
3
4   source file of the LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef TIE_HH
11 #define TIE_HH
12
13 #include "bow.hh"
14
15 class Tie : public Bow {
16     virtual Spanner* do_break_at(PCol*,PCol*)const;
17     virtual void do_add_processing();
18     virtual void do_post_processing();
19 public:
20     Notehead * left_head_l_;
21     Notehead * right_head_l_;
22
23     void set_head(int, Notehead*head_l);
24     Tie();
25     
26 };
27 #endif // TIE_HH