]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.59
authorfred <fred>
Sun, 4 May 1997 20:54:00 +0000 (20:54 +0000)
committerfred <fred>
Sun, 4 May 1997 20:54:00 +0000 (20:54 +0000)
lily/include/tie.hh [new file with mode: 0644]

diff --git a/lily/include/tie.hh b/lily/include/tie.hh
new file mode 100644 (file)
index 0000000..9247b26
--- /dev/null
@@ -0,0 +1,27 @@
+/*
+  tie.hh -- declare Tie
+
+  source file of the LilyPond music typesetter
+
+  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+*/
+
+
+#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