From: fred Date: Sun, 4 May 1997 20:54:00 +0000 (+0000) Subject: lilypond-0.0.59 X-Git-Tag: release/1.5.59~6142 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c7f569a72569b6b872caebb56518c4a3ab9eba3b;p=lilypond.git lilypond-0.0.59 --- diff --git a/lily/include/tie.hh b/lily/include/tie.hh new file mode 100644 index 0000000000..9247b26156 --- /dev/null +++ b/lily/include/tie.hh @@ -0,0 +1,27 @@ +/* + tie.hh -- declare Tie + + source file of the LilyPond music typesetter + + (c) 1997 Han-Wen Nienhuys +*/ + + +#ifndef TIE_HH +#define TIE_HH + +#include "bow.hh" + +class Tie : public Bow { + virtual Spanner* do_break_at(PCol*,PCol*)const; + virtual void do_add_processing(); + virtual void do_post_processing(); +public: + Notehead * left_head_l_; + Notehead * right_head_l_; + + void set_head(int, Notehead*head_l); + Tie(); + +}; +#endif // TIE_HH