lilypond-0.0.59
[lilypond.git] / lily / include / tie.hh
blob9247b26156cdb4c1a13bf92d33473edc31325336
1 /*
2 tie.hh -- declare Tie
4 source file of the LilyPond music typesetter
6 (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
10 #ifndef TIE_HH
11 #define TIE_HH
13 #include "bow.hh"
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_;
23 void set_head(int, Notehead*head_l);
24 Tie();
27 #endif // TIE_HH